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

9 lines
72 B
Kotlin
Vendored

package a
import a.A as ER
interface A {
val a: A
val b: ER
}