Files
kotlin/compiler/testData/codegen/classes/simplestClosureAndBoxing.jet
2011-10-20 16:21:18 +02:00

8 lines
146 B
Plaintext

fun box() : String {
return if (int_invoker( { 7 } ) == 7) "OK" else "fail"
}
fun int_invoker(gen : fun () : Int) : Int {
return gen()
}