Files
kotlin-fork/compiler/testData/codegen/box/closures/simplestClosure.kt
T
2018-08-09 14:22:50 +03:00

8 lines
116 B
Kotlin
Vendored

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