Files
kotlin-fork/compiler/testData/codegen/functions/nothisnoclosure.jet
T

13 lines
217 B
Plaintext

fun loop(var times : Int) {
while(times > 0) {
val u : fun(value : Int) : Unit = {
System.out?.println(it)
}
u(times--)
}
}
fun box() : String {
loop(5)
return "OK"
}