Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/kt1244.fir.kt
T
2023-01-31 08:39:43 +00:00

14 lines
221 B
Kotlin
Vendored

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