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

14 lines
192 B
Plaintext
Vendored

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