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

29 lines
533 B
Kotlin

package foo
fun run<T>(f: () -> T) = f()
fun box(): String {
fun simple(s: String? = null): String {
if (s != null) return s
return run {
simple("OK")
}
}
if (simple("OK") != "OK") return "failed on simple recursion"
val ok = "OK"
fun withClosure(s: String? = null): String {
if (s != null) return s
return ok + run {
withClosure(ok)
}
}
if (withClosure() != ok + ok) return "failed when closure something"
return "OK"
}