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

12 lines
187 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
// DONT_RUN_GENERATED_CODE: JS
tailrec fun foo(x: Int) {
if (x == 0) return
return (foo(x - 1))
}
fun box(): String {
foo(1000000)
return "OK"
}