Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/kt9430.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
201 B
Kotlin
Vendored

open class A {
protected fun foo() {}
}
class B: A()
class C: A() {
fun bar() {
A().foo()
B().foo()
}
}
class D {
fun qux() { B().<!INVISIBLE_REFERENCE!>foo<!>() }
}