Files
kotlin/compiler/testData/codegen/box/statics/anonymousInitializerInClassObject.kt
2016-03-09 10:25:38 +03:00

13 lines
157 B
Kotlin
Vendored

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