1eb18f13bd
KT-54648
14 lines
221 B
Kotlin
Vendored
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"
|
|
}
|
|
}
|