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

17 lines
256 B
Kotlin
Vendored

// FIR_IDENTICAL
//FILE:a.kt
//KT-1580 Can't access nested class/interface from other package
package lib
interface WithInner {
interface Inner {
}
}
//FILE:b.kt
package user
import lib.WithInner
fun main(a : WithInner, b : WithInner.Inner) {
}