blob: 706462318d7d700227755d8ff58b3edc8c96c656 [file]
fun box(): String {
while (true) {
try {
continue;
}
finally {
break;
}
}
return "OK"
}