48 lines
651 B
Kotlin
Vendored
48 lines
651 B
Kotlin
Vendored
// IGNORE_BACKEND: WASM
|
|
// FILE: test.kt
|
|
|
|
fun foo(x: Int) {
|
|
if (x > 0) {
|
|
"OK"
|
|
}
|
|
|
|
if (x > 0) else {
|
|
"OK"
|
|
}
|
|
|
|
if (x > 0) {
|
|
"OK"
|
|
} else {
|
|
"ALSO OK"
|
|
}
|
|
}
|
|
|
|
fun box() {
|
|
foo(1)
|
|
foo(0)
|
|
}
|
|
|
|
// EXPECTATIONS JVM JVM_IR
|
|
// test.kt:21 box
|
|
// test.kt:5 foo
|
|
// test.kt:6 foo
|
|
// test.kt:9 foo
|
|
// test.kt:13 foo
|
|
// test.kt:14 foo
|
|
// test.kt:18 foo
|
|
// test.kt:22 box
|
|
// test.kt:5 foo
|
|
// test.kt:9 foo
|
|
// test.kt:10 foo
|
|
// test.kt:13 foo
|
|
// test.kt:16 foo
|
|
// test.kt:18 foo
|
|
// test.kt:23 box
|
|
|
|
// EXPECTATIONS JS_IR
|
|
// test.kt:21 box
|
|
// test.kt:18 foo
|
|
// test.kt:22 box
|
|
// test.kt:18 foo
|
|
// test.kt:23 box
|