Files
kotlin-fork/compiler/testData/diagnostics/tests/imports/ImportNestedWithDifferentName.kt
T
2016-01-19 19:30:19 +03:00

11 lines
100 B
Kotlin
Vendored

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