765d851b1a
#KT-1736 fixed #KT-1244 fixed #KT-1738 fixed
13 lines
194 B
Plaintext
13 lines
194 B
Plaintext
//KT-1244 Frontend allows access to private members of other classes
|
|
|
|
package kt1244
|
|
|
|
class A {
|
|
private var a = ""
|
|
}
|
|
|
|
class B() {
|
|
{
|
|
A().<!INVISIBLE_MEMBER!>a<!> = "Hello"
|
|
}
|
|
} |