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

9 lines
114 B
Kotlin
Vendored

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