Files
kotlin-fork/compiler/testData/codegen/box/controlStructures/kt1688.kt
T
2018-06-09 19:15:38 +03:00

12 lines
195 B
Kotlin
Vendored

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