Files
kotlin-fork/compiler/testData/debug/stepping/IfTrueThenFalse.kt
T
2023-08-15 17:03:11 +00:00

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