Files
kotlin-fork/backend.native/tests/external/codegen/box/controlStructures/tryCatchFinallyChain.kt
T
2017-03-13 15:31:46 +03:00

20 lines
349 B
Kotlin

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