Files
kotlin-fork/idea/testData/intentions/moveMemberToTopLevel/redeclarationConflictWithPackage.kt
T
shiraji 31a1fb916a Implement an intention action to move a companion object member to top level
#KT-18828 Fixed

(cherry picked from commit 11f8f8b)
2017-10-23 17:29:28 +03:00

9 lines
154 B
Kotlin
Vendored

// SHOULD_FAIL_WITH: Package 'foo.bar' already contains function f1(Int)
package foo.bar
object Test {
fun <caret>f1(n: Int) {}
}
fun f1(n: Int) {}