blob: 72aa88ec05bcb31d88f05caabd70baf8fb779d97 [file]
object Foo {
val bar: String
init {
bar = "OK"
}
}
fun box(): String {
return Foo.bar
}