blob: 0bbc232c5f13256934e902c19881d1ed2888aa57 [file]
fun box(): String {
var s = ""
try {
throw RuntimeException()
} catch (e : RuntimeException) {
} finally {
s += "OK"
}
return s
}