Files
kotlin-fork/compiler/testData/diagnostics/tests/imports/ImportObjectHidesCurrentPackage.kt
T
2015-01-21 20:10:16 +03:00

13 lines
109 B
Kotlin
Vendored

//FILE:a.kt
package a
// no error is reported
import b.a
fun foo() = a
//FILE:b.kt
package b
object a {}