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

8 lines
104 B
Kotlin

tailRecursive fun test() : Int {
try {
// do nothing
} finally {
test()
}
}