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

13 lines
146 B
Kotlin

// FILE: root.kt
fun testFun() = 12
// FILE: otherPackage.kt
package test
fun testFun() = 12
// FILE: using.kt
package test
val t = testFun()