Files
kotlin-fork/compiler/testData/diagnostics/tests/imports/invisibleFakeReferenceInImport.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

17 lines
188 B
Kotlin
Vendored

// FILE: A.kt
import B.foo
fun test() {
<!INVISIBLE_REFERENCE!>foo<!>
}
// FILE: B.kt
object B : C<String>()
// FILE: C.kt
open class C<T> {
private var foo: String = "abc"
}