13 lines
253 B
Kotlin
Vendored
13 lines
253 B
Kotlin
Vendored
// DONT_TARGET_EXACT_BACKEND: WASM
|
|
// WASM_MUTE_REASON: EXCEPTIONS_NOT_IMPLEMENTED
|
|
fun box(): String {
|
|
var s = ""
|
|
try {
|
|
throw RuntimeException()
|
|
} catch (e : RuntimeException) {
|
|
} finally {
|
|
s += "OK"
|
|
}
|
|
return s
|
|
}
|