Files
kotlin-fork/compiler/testData/codegen/classes/simplestClosure.kt
T
2013-01-24 21:12:27 +04:00

8 lines
116 B
Kotlin

fun box() : String {
return invoker( {"OK"} )
}
fun invoker(gen : () -> String) : String {
return gen()
}