Files
kotlin-fork/compiler/testData/debug/stepping/constantConditions.kt
T
Alexander Udalov 5480faf5c5 Add tests for issues fixed in JVM IR and other obsolete issues
#KT-6007
 #KT-16445
 #KT-17753
 #KT-22488
 #KT-23881
 #KT-24135
 #KT-26360
 #KT-27427
 #KT-27449
 #KT-27830
 #KT-28042
 #KT-29595
 #KT-30708
 #KT-32793
2021-02-01 18:29:59 +01:00

26 lines
310 B
Kotlin
Vendored

// FILE: test.kt
// KT-22488
fun box() {
test()
}
fun test(): Long {
if (1 == 1 &&
2 == 2) {
return 0
}
return 1
}
// LINENUMBERS
// test.kt:5 box
// LINENUMBERS JVM_IR
// test.kt:9 test
// LINENUMBERS
// test.kt:10 test
// test.kt:11 test
// test.kt:5 box
// test.kt:6 box