29 lines
481 B
Kotlin
Vendored
29 lines
481 B
Kotlin
Vendored
// IGNORE_BACKEND: WASM
|
|
// FILE: test.kt
|
|
// KT-17753
|
|
|
|
fun box() {
|
|
test(true, true, true)
|
|
}
|
|
|
|
fun test(a: Boolean, b: Boolean, c: Boolean): Boolean {
|
|
return a
|
|
&& b
|
|
&& c
|
|
}
|
|
|
|
// EXPECTATIONS JVM JVM_IR
|
|
// test.kt:6 box
|
|
// EXPECTATIONS JVM_IR
|
|
// test.kt:10 test
|
|
// test.kt:11 test
|
|
// EXPECTATIONS JVM JVM_IR
|
|
// test.kt:12 test
|
|
// test.kt:10 test
|
|
// test.kt:6 box
|
|
// test.kt:7 box
|
|
|
|
// EXPECTATIONS JS_IR
|
|
// test.kt:6 box
|
|
// test.kt:10 test
|
|
// test.kt:7 box |