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

10 lines
171 B
Kotlin
Vendored

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