Files
kotlin-fork/compiler/testData/diagnostics/tests/imports/PackageLocalClassReferencedError.fir.kt
T
pyos e6d923f65c FIR: rename HIDDEN to INVISIBLE_REFERENCE
Some of them should be INVISIBLE_MEMBER though
2021-04-21 16:18:21 +03:00

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<!>()