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

11 lines
100 B
Kotlin
Vendored

package a
import a.A.Nested as X
interface A {
class Nested
val a: Nested
val b: X
}