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

10 lines
151 B
Kotlin
Vendored

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