mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
13 lines
404 B
Kotlin
Vendored
13 lines
404 B
Kotlin
Vendored
// TODO: muted automatically, investigate should it be ran for JS or not
|
|
// IGNORE_BACKEND_WITHOUT_CHECK: JS
|
|
|
|
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" |