Files
kotlin-fork/compiler/testData/codegen/box/properties/kt8928.kt
T
2015-11-03 15:41:22 +03:00

16 lines
196 B
Kotlin
Vendored

class App {
fun init() {
s = "OK"
}
companion object {
var s: String = "Fail"
private set
}
}
fun box(): String {
App().init()
return App.s
}