Files
kotlin/compiler/testData/codegen/box/diagnostics/functions/tailRecursion/infixCall.kt
2018-06-09 19:15:38 +03:00

11 lines
248 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
// DONT_RUN_GENERATED_CODE: JS
tailrec infix fun Int.test(x : Int) : Int {
if (this > 1) {
return (this - 1) test x
}
return this
}
fun box() : String = if (1000000.test(1000000) == 1) "OK" else "FAIL"