15 lines
284 B
Kotlin
Vendored
15 lines
284 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(<!UNUSED_PARAMETER!>a<!> : WithInner, <!UNUSED_PARAMETER!>b<!> : WithInner.Inner) {
|
|
} |