Files
kotlin-fork/compiler/testData/codegen/bytecodeText/lineNumbers/ifFalseElse.kt
T
Mikhail Glukhikh ac50433e17 Fix failing bytecode text test
In this commit I moved IGNORE_BACKEND_FIR to the end or deleted it
when it was applicable, to preserve correct line numbers
2020-09-29 19:16:42 +03:00

9 lines
107 B
Kotlin
Vendored

fun foo(): Int {
if (false) {
return 1
} else {
return 2
}
}
// 1 LINENUMBER 2