Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/kt1244.kt
T
Denis Zharkov f07566d30d Add warning for initializers with obsolete syntax
Expected 'init' keyword before class initializer
2015-03-11 17:45:26 +03:00

13 lines
199 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_MEMBER!>a<!> = "Hello"
}
}