17 lines
226 B
Kotlin
Vendored
17 lines
226 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
class App {
|
|
fun init() {
|
|
s = "OK"
|
|
}
|
|
companion object {
|
|
var s: String = "Fail"
|
|
private set
|
|
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
App().init()
|
|
|
|
return App.s
|
|
} |