Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
scopes
/
AmbiguityBetweenRootAndPackage.kt
blob: 0e7d033e20a23f3c7366515a204f68ba95c773a1 [
file
]
// 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
()