Files
kotlin/compiler/testData/codegen/box/diagnostics/functions/tailRecursion/insideElvis.kt
2015-09-04 17:23:26 +03:00

10 lines
294 B
Kotlin
Vendored

tailrec fun test(counter : Int) : Int? {
if (counter < 0) return null
if (counter == 0) return 777
return <!NON_TAIL_RECURSIVE_CALL!>test<!>(-1) ?: <!NON_TAIL_RECURSIVE_CALL!>test<!>(-2) ?: test(counter - 1)
}
fun box() : String =
if (test(100000) == 777) "OK"
else "FAIL"