blob: f97afde458c81b98a8fb0d80f1b455c7eb874d36 [file]
// FILE: test.kt
var current = true
fun alternate(): Boolean {
current = !current
return current
}
fun foo() {
while (true) {
if (alternate()) {
break
}
}
}
fun box() {
foo()
}
// EXPECTATIONS JVM_IR
// test.kt:20 box
// test.kt:12 foo
// test.kt:13 foo
// test.kt:7 alternate
// test.kt:8 alternate
// test.kt:13 foo
// test.kt:12 foo
// test.kt:13 foo
// test.kt:7 alternate
// test.kt:8 alternate
// test.kt:13 foo
// test.kt:14 foo
// test.kt:17 foo
// test.kt:21 box
// EXPECTATIONS NATIVE
// test.kt:20 box
// test.kt:11 foo
// test.kt:12 foo
// test.kt:13 foo
// test.kt:6 alternate
// test.kt:7 alternate
// test.kt:4 <get-current>
// test.kt:7 alternate
// test.kt:4 <set-current>
// test.kt:8 alternate
// test.kt:4 <get-current>
// test.kt:8 alternate
// test.kt:9 alternate
// test.kt:13 foo
// test.kt:15 foo
// test.kt:12 foo
// test.kt:13 foo
// test.kt:6 alternate
// test.kt:7 alternate
// test.kt:4 <get-current>
// test.kt:7 alternate
// test.kt:4 <set-current>
// test.kt:8 alternate
// test.kt:4 <get-current>
// test.kt:8 alternate
// test.kt:9 alternate
// test.kt:13 foo
// test.kt:14 foo
// test.kt:21 box
// EXPECTATIONS JS_IR
// test.kt:20 box
// test.kt:7 alternate
// test.kt:8 alternate
// test.kt:7 alternate
// test.kt:8 alternate
// test.kt:17 foo
// test.kt:21 box
// EXPECTATIONS WASM
// test.kt:20 $box (4)
// test.kt:12 $foo (11)
// test.kt:13 $foo (12)
// test.kt:7 $alternate (15, 14, 4)
// test.kt:8 $alternate (11, 4)
// test.kt:13 $foo (12)
// test.kt:17 $foo (1)
// test.kt:12 $foo (11)
// test.kt:13 $foo (12)
// test.kt:7 $alternate (15, 14, 4)
// test.kt:8 $alternate (11, 4)
// test.kt:13 $foo (12)
// test.kt:14 $foo (12)
// test.kt:17 $foo (1)
// test.kt:21 $box (1)