Files
kotlin-fork/compiler/testData/cfg/tailCalls/tryCatchFinally.kt
T
2013-12-06 00:28:12 +04:00

9 lines
130 B
Kotlin
Vendored

fun test() : Unit {
try {
test()
} catch (any : Exception) {
test()
} finally {
test()
}
}