Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
moveOutOfCompanion
/
redeclarationConflict.kt
blob: b2cc849ae20d60f8b2dc212765fa4e2b409d994d [
file
] [
log
] [
blame
]
// SHOULD_FAIL_WITH: Class 'Test' already contains function f1(Int)
class
Test
{
fun f1
(
n
:
Int
){}
companion
object
{
fun
<caret>
f1
(
n
:
Int
){}
}
}