Files
kotlin-fork/js/js.translator/testData/closure/cases/closureLocalFunction.kt
T
2014-03-11 20:04:00 +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()
}