Files
kotlin-fork/idea/testData/codeInsight/moveUpDown/closingBraces/when/whenEntry4.kt
T
2013-06-05 15:51:10 +04:00

16 lines
156 B
Kotlin

// MOVE: up
fun foo(n: Int) {
when (n) {
0 -> {
}
1 -> {
}<caret>
else -> {
}
}
val x = ""
}