Files
kotlin-fork/compiler/testData/cfg/tailCalls/try.kt
T
2015-09-04 17:23:26 +03:00

8 lines
92 B
Kotlin
Vendored

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