22 lines
320 B
Kotlin
Vendored
22 lines
320 B
Kotlin
Vendored
// IGNORE_BACKEND: WASM
|
|
// FILE: test.kt
|
|
fun cond() = false
|
|
|
|
fun box() {
|
|
if (cond())
|
|
cond()
|
|
else
|
|
false
|
|
}
|
|
|
|
// EXPECTATIONS JVM JVM_IR
|
|
// test.kt:6 box
|
|
// test.kt:3 cond
|
|
// test.kt:6 box
|
|
// test.kt:9 box
|
|
// test.kt:10 box
|
|
|
|
// EXPECTATIONS JS_IR
|
|
// test.kt:6 box
|
|
// test.kt:3 cond
|
|
// test.kt:10 box |