Files
kotlin/compiler/testData/codegen/box/diagnostics/functions/tailRecursion/infixRecursiveCall.kt
2015-09-04 17:23:26 +03:00

11 lines
185 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
tailrec fun Int.foo(x: Int) {
if (x == 0) return
val xx = x - 1
return 1 foo xx
}
fun box(): String {
1 foo 1000000
return "OK"
}