e6d923f65c
Some of them should be INVISIBLE_MEMBER though
26 lines
341 B
Kotlin
Vendored
26 lines
341 B
Kotlin
Vendored
// FILE: a.kt
|
|
package outer
|
|
|
|
private fun a() {}
|
|
private class B
|
|
|
|
// FILE: b.kt
|
|
package outer.p1
|
|
|
|
import outer.a
|
|
|
|
fun use() {
|
|
<!INVISIBLE_REFERENCE!>a<!>()
|
|
outer.<!INVISIBLE_REFERENCE!>B<!>()
|
|
}
|
|
|
|
// FILE: c.kt
|
|
package outer.p1.p2
|
|
|
|
import outer.a
|
|
|
|
fun use() {
|
|
<!INVISIBLE_REFERENCE!>a<!>()
|
|
outer.<!INVISIBLE_REFERENCE!>B<!>()
|
|
}
|