Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/kt1244.kt
T
Andrey Breslav 3d8d92c7d3 JetDiagnosticsTest migrated to TestGenerator
- test data files renamed from *.jet to *.kt
2012-07-10 14:48:11 +04:00

13 lines
194 B
Kotlin

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