15 lines
238 B
Kotlin
Vendored
15 lines
238 B
Kotlin
Vendored
//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) {
|
|
} |