10 lines
182 B
Kotlin
Vendored
10 lines
182 B
Kotlin
Vendored
// IGNORE_BACKEND: JS_IR
|
|
// EXPECTED_REACHABLE_NODES: 1280
|
|
fun box(): String {
|
|
return js("""
|
|
function foo() {
|
|
return "OK";
|
|
}
|
|
foo();
|
|
""")
|
|
} |