17 lines
256 B
Kotlin
Vendored
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) {
|
|
}
|