596b1622a3
Object members and accessors for private class members
14 lines
158 B
Kotlin
14 lines
158 B
Kotlin
object A {
|
|
var result = "Fail"
|
|
|
|
fun foo() {
|
|
result = "OK"
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
val x = A::foo
|
|
A.x()
|
|
return A.result
|
|
}
|