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

14 lines
181 B
Kotlin
Vendored

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