Files
kotlin-fork/js/js.translator/testData/box/closure/closureFunctionByInnerFunction.kt
T
Alexey Andreev 3b3fd0fa0d JS: fix DCE limits in test data to fit new kotlin.js size
The size has increased due to new implementation of KClass
2017-10-06 18:16:51 +03:00

30 lines
503 B
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 1115
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"
}