mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
16 lines
207 B
Kotlin
Vendored
16 lines
207 B
Kotlin
Vendored
var result = "OK"
|
|
|
|
class A {
|
|
companion object {
|
|
var z = result
|
|
|
|
fun patchResult() {
|
|
result = "fail"
|
|
}
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
A.patchResult()
|
|
return A.z
|
|
} |