Files
kotlin-fork/compiler/testData/codegen/regressions/kt1688.kt
T
2012-06-08 19:21:41 +02:00

11 lines
170 B
Kotlin

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