Files
kotlin/compiler/testData/codegen/box/diagnostics/functions/tailRecursion/tailCallInParentheses.kt
2018-10-17 18:33:52 +03:00

11 lines
162 B
Kotlin
Vendored

// 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"
}