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

16 lines
156 B
Kotlin
Vendored

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