13 lines
205 B
Kotlin
Vendored
13 lines
205 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().<!INAPPLICABLE_CANDIDATE!>a<!> = "Hello"
|
|
}
|
|
} |