Files
kotlin-fork/compiler/testData/codegen/box/controlStructures/kt2259.kt
T
2021-09-08 19:56:38 +03:00

12 lines
141 B
Kotlin
Vendored

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