Files
kotlin-fork/compiler/testData/diagnostics/tests/imports/ExplicitImportsAmbiguity.kt
T
2021-06-08 08:18:55 +00:00

18 lines
221 B
Kotlin
Vendored

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