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

11 lines
140 B
Kotlin
Vendored

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