Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/kt1579.kt
T
2015-05-12 19:43:17 +02:00

10 lines
173 B
Kotlin
Vendored

//FILE:a.kt
//KT-1579 Can't import nested class/interface
package lib
interface WithInner {
interface Inner {
}
}
//FILE:b.kt
package user
import lib.WithInner.Inner