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

17 lines
204 B
Kotlin

// FILE: a.kt
package a
class X
// FILE: b.kt
package b
class X
// FILE: c.kt
package c
import <!CONFLICTING_IMPORT!>a.X<!>
import <!CONFLICTING_IMPORT!>b.X<!>
class Y : <!UNRESOLVED_REFERENCE!>X<!>