Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/kt1244.jet
T
Svetlana Isakova 765d851b1a Tests for fixed issues
#KT-1736 fixed
 #KT-1244 fixed
 #KT-1738 fixed
2012-05-04 20:47:26 +04:00

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"
}
}