blob: d706d850760664a7844afb2307c4a8aee16f04d3 [file] [log] [blame]
fun box(): String {
val a = "OK"
val c = {
val b = a
b
}.invoke()
return a
}