Files
2021-09-08 19:56:38 +03:00

12 lines
171 B
Kotlin
Vendored

fun box(): String {
var s = ""
try {
throw RuntimeException()
} catch (e : RuntimeException) {
} finally {
s += "OK"
}
return s
}