Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/kt1244.fir.kt
T

14 lines
226 B
Kotlin
Vendored

//KT-1244 Frontend allows access to private members of other classes
package kt1244
class A {
private var a = ""
}
class B() {
init {
<!INVISIBLE_SETTER!>A().<!INVISIBLE_REFERENCE!>a<!><!> = "Hello"
}
}