Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/multifile/simpleImportOuter.kt
T
2020-03-19 09:51:01 +03:00

15 lines
132 B
Kotlin
Vendored

// FILE: A.kt
package a
class Outer {
open class Nested
}
// FILE: B.kt
package b
import a.Outer
class My : Outer.Nested()