Files
kotlin-fork/backend.native/tests/external/codegen/box/statics/anonymousInitializerInClassObject.kt
T
2017-03-13 15:31:46 +03:00

13 lines
157 B
Kotlin

class Foo {
companion object {
val bar: String
init {
bar = "OK"
}
}
}
fun box(): String {
return Foo.bar
}