blob: b7dad56133f8398272d9b4011521b9ef121cfea7 [file]
fun box() : String {
var a = 1
object {
init {
a = 2
}
}
return if (a == 2) "OK" else "fail"
}