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

17 lines
165 B
Kotlin

// MOVE: up
fun foo(x: Boolean) {
when (x) {
false -> {
}
true -> {
}
else -> {
}
}
<caret>// test
}