Files
kotlin-fork/compiler/testData/codegen/box/closures/kt3905.kt
T
2013-09-24 12:59:57 +04:00

6 lines
93 B
Kotlin

fun box() : String {
fun foo<T>(t:() -> T) : T = t()
return foo {}
return "OK"
}