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

14 lines
175 B
Kotlin
Vendored

// FIR_IDENTICAL
// FILE: root.kt
fun testFun() = "239"
// FILE: otherPackage.kt
package test
fun testFun() = 12
// FILE: using.kt
import test.*
val t: String = testFun()