blob: 3b3559b2895c9672d838352390f8cb4f9c54c769 [file]
class Foo {
companion object {
val bar: String
init {
bar = "OK"
}
}
}
fun box(): String {
return Foo.bar
}