1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
11 lines
170 B
Kotlin
11 lines
170 B
Kotlin
fun box(): String {
|
|
var s = ""
|
|
try {
|
|
throw RuntimeException()
|
|
} catch (e : RuntimeException) {
|
|
} finally {
|
|
s += "OK"
|
|
}
|
|
return s
|
|
}
|