a56bebe44e
We want to use end offset of branch's result as the end for the whole branch, not just the end of its condition. #KT-63779 Fixed
8 lines
114 B
Kotlin
Vendored
8 lines
114 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
|
|
fun topLevelMethod(x: Int, y: Int) {
|
|
if(x > y) {
|
|
} else if(x < y) {
|
|
} else {
|
|
}
|
|
} |