Files
kotlin-fork/compiler/testData/codegen/box/statics/anonymousInitializerInClassObject.kt
T
2020-03-10 15:19:34 +03:00

13 lines
157 B
Kotlin
Vendored

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