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

8 lines
98 B
Kotlin

tailRecursive fun foo() {
try {
return foo()
}
catch (e: Throwable) {
}
}