Files
kotlin-fork/idea/testData/codeInsight/moveUpDown/closingBraces/when/when2.kt
T
2013-06-05 15:50:47 +04:00

17 lines
180 B
Kotlin

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