e9c9d5731e
This is in preparation for enabling the tests for FIR which will be easier to do when the tests are on the new infrastructure.
24 lines
358 B
Kotlin
Vendored
24 lines
358 B
Kotlin
Vendored
// 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
|
|
// test.kt:5 box
|
|
// EXPECTATIONS JVM_IR
|
|
// test.kt:9 test
|
|
// test.kt:10 test
|
|
// EXPECTATIONS
|
|
// test.kt:11 test
|
|
// test.kt:9 test
|
|
// test.kt:5 box
|
|
// test.kt:6 box
|