Files
kotlin/compiler/testData/codegen/box/functions/tailRecursion/defaultArgs.kt
2013-12-05 23:53:08 +04:00

13 lines
227 B
Kotlin

tailRecursive fun test(x : Int = 0, e : Any = "a") {
if (!e.equals("a")) {
throw IllegalArgumentException()
}
if (x > 0) {
test(x - 1)
}
}
fun box() : String {
test(100000)
return "OK"
}