e6d923f65c
Some of them should be INVISIBLE_MEMBER though
12 lines
163 B
Kotlin
Vendored
12 lines
163 B
Kotlin
Vendored
// FILE: File1.kt
|
|
package pack1
|
|
|
|
private open class SomeClass
|
|
|
|
// FILE: Main.kt
|
|
package a
|
|
|
|
import pack1.*
|
|
|
|
private class X : <!INVISIBLE_REFERENCE!>SomeClass<!>()
|