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

14 lines
189 B
Plaintext
Vendored

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