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

20 lines
349 B
Kotlin
Vendored

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