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

29 lines
469 B
Kotlin
Vendored

package foo
val r = "OK"
fun simple(s: String? = null): String {
if (s != null) return s
return myRun {
simple("OK")
}
}
val ok = "OK"
fun withClosure(s: String? = null): String {
if (s != null) return s
return ok + myRun {
withClosure(ok)
}
}
fun box(): String {
if (simple("OK") != "OK") return "failed on simple recursion"
if (withClosure() != ok + ok) return "failed when closure something"
return "OK"
}