38f0ac332d
#KT-55405 Fixed
26 lines
393 B
Kotlin
Vendored
26 lines
393 B
Kotlin
Vendored
// FILE: a.kt
|
|
package outer
|
|
|
|
private fun a() {}
|
|
private class B
|
|
|
|
// FILE: b.kt
|
|
package outer.p1
|
|
|
|
import outer.<!INVISIBLE_REFERENCE!>a<!>
|
|
|
|
fun use() {
|
|
<!INVISIBLE_REFERENCE!>a<!>()
|
|
outer.<!INVISIBLE_REFERENCE!>B<!>()
|
|
}
|
|
|
|
// FILE: c.kt
|
|
package outer.p1.p2
|
|
|
|
import outer.<!INVISIBLE_REFERENCE!>a<!>
|
|
|
|
fun use() {
|
|
<!INVISIBLE_REFERENCE!>a<!>()
|
|
outer.<!INVISIBLE_REFERENCE!>B<!>()
|
|
}
|