Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/NoAmbiguityBetweenRootAndPackage.kt
T

14 lines
163 B
Kotlin
Vendored

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