Files
kotlin-fork/js/js.translator/testFiles/closure/cases/closureLocalFunction.kt
T
2014-02-06 14:01:10 +04:00

12 lines
149 B
Kotlin

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