Files
kotlin-fork/js/js.translator/testData/closure/cases/closureFunctionAsArgument.kt
T
2014-03-11 20:04:00 +04:00

11 lines
144 B
Kotlin

package foo
fun test(f: () -> String): String {
val funLit = { f() }
return funLit()
}
fun box(): String {
return test { "OK" }
}