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

21 lines
350 B
Kotlin
Vendored

fun box() : String {
try {
} finally {
try {
try {
} finally {
try {
} finally {
}
}
} catch (e: Exception) {
try {
} catch (f: Exception) {
} finally {
}
}
return "OK"
}
}