Files
kotlin-fork/idea/testData/codeInsight/moveUpDown/expressions/intoElse4.kt
T

11 lines
164 B
Kotlin
Vendored

// MOVE: up
fun test(i: Int) {
if (i == 1) {
run {
}
} else if (i == 2) {
} else if (i == 3) {
} else {
}
<caret>println()
}