Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/AmbiguityBetweenRootAndPackage.kt
T
2014-01-16 22:11:55 +04:00

13 lines
183 B
Kotlin

// FILE: root.kt
fun testFun() = 12
// FILE: otherPackage.kt
package test
fun testFun() = 12
// FILE: using.kt
import test.*
val t = <!OVERLOAD_RESOLUTION_AMBIGUITY!>testFun<!>()