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

9 lines
99 B
Kotlin
Vendored

package a
import a.A as ER
interface A {
val a: <!UNRESOLVED_REFERENCE!>A<!>
val b: ER
}