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

36 lines
492 B
Kotlin
Vendored

// IGNORE_BACKEND: WASM
// FILE: test.kt
fun foo() {
if (flag) {
return
}
}
var flag = true
fun box() {
foo()
flag = false
foo()
}
// EXPECTATIONS JVM JVM_IR
// test.kt:13 box
// test.kt:5 foo
// test.kt:6 foo
// test.kt:14 box
// test.kt:15 box
// test.kt:5 foo
// test.kt:8 foo
// test.kt:16 box
// EXPECTATIONS JS_IR
// test.kt:13 box
// test.kt:5 foo
// test.kt:6 foo
// test.kt:14 box
// test.kt:15 box
// test.kt:5 foo
// test.kt:8 foo
// test.kt:16 box