Files
kotlin-fork/js/js.translator/testData/closure/cases/closureLocalFunctionByInnerFunction.kt
T
2014-10-06 23:18:53 +04:00

27 lines
503 B
Kotlin

package foo
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"
}