Files
kotlin-fork/js/js.translator/testData/box/closure/closureLocalFunction.kt
T

12 lines
149 B
Kotlin
Vendored

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