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

12 lines
165 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
fun foo(args: Array<String>) {
try {
} finally {
try {
} catch (e: Throwable) {
}
}
}
fun box() = "OK"