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