blob: 87b20050c8df615c0b67fb999a72d27e0f0e0b90 [file]
// FILE: test.kt
fun cond() = false
fun box() {
if (cond())
cond()
else
false
}
// EXPECTATIONS JVM_IR
// test.kt:6 box
// test.kt:3 cond
// test.kt:6 box
// test.kt:9 box
// test.kt:10 box
// EXPECTATIONS NATIVE
// 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:9 box
// test.kt:10 box
// EXPECTATIONS WASM
// test.kt:6 $box (8)
// test.kt:3 $cond (13, 18)
// test.kt:6 $box (8)
// test.kt:9 $box (9)
// test.kt:10 $box (1)