Files
kotlin-fork/compiler/testData/debug/stepping/IfTrueThenFalse.kt
T
2023-12-18 21:42:35 +00:00

23 lines
317 B
Kotlin
Vendored

// IGNORE_BACKEND: WASM
// 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 JS_IR
// test.kt:6 box
// test.kt:3 cond
// test.kt:10 box