Files
kotlin-fork/compiler/testData/diagnostics/tests/imports/ExplicitPackageImportsAmbiguity.fir.kt
T

17 lines
133 B
Kotlin
Vendored

// FILE: a.kt
package a.x
class X
// FILE: b.kt
package b.x
class X
// FILE: c.kt
package c
import a.x
import b.x
class Y : x.X