17 lines
228 B
Kotlin
Vendored
17 lines
228 B
Kotlin
Vendored
// JVM_ABI_K1_K2_DIFF: KT-63984
|
|
class App {
|
|
fun init() {
|
|
s = "OK"
|
|
}
|
|
companion object {
|
|
var s: String = "Fail"
|
|
private set
|
|
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
App().init()
|
|
|
|
return App.s
|
|
} |