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

14 lines
181 B
Kotlin
Vendored

// DONT_RUN_GENERATED_CODE: JS
tailrec fun foo(x: Int) {
return if (x > 0) {
(foo(x - 1))
}
else Unit
}
fun box(): String {
foo(1000000)
return "OK"
}