Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/kt9430.fir.kt
T
Ivan Kochurkin afb85026c4 Revert "[FIR] Implement INVISIBLE_SETTER"
This reverts commit b3d7ed56
2021-08-02 20:10:22 +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<!>() }
}