Files
kotlin-fork/compiler/testData/codegen/box/controlStructures/kt1688.kt
T
2020-11-09 16:04:43 +03:00

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
}