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

17 lines
167 B
Kotlin

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