Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/kt1579.kt
T

11 lines
190 B
Kotlin
Vendored

// FIR_IDENTICAL
//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