1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
16 lines
196 B
Kotlin
16 lines
196 B
Kotlin
class App {
|
|
fun init() {
|
|
s = "OK"
|
|
}
|
|
companion object {
|
|
var s: String = "Fail"
|
|
private set
|
|
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
App().init()
|
|
|
|
return App.s
|
|
} |