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

11 lines
170 B
Kotlin
Vendored

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