Files
kotlin/compiler/testData/codegen/box/closures/closureInsideClosure/varAsFunInsideLocalFun.kt
2015-04-07 13:08:53 +03:00

16 lines
182 B
Kotlin
Vendored

//KT-3276
fun box(): String {
fun rec(n : Int) {
val x = { m : Int ->
if (n > 0) rec(n - 1)
}
x(0)
}
rec(5)
return "OK"
}