Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/kt1580.kt
T
2015-05-12 19:43:17 +02:00

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) {
}