Files
kotlin/idea/testData/codeInsight/moveUpDown/expressions/whileToBlock2.kt
Alexey Sedunov 609154bab3 Generalize movable element constraint
#KT-4468 Fixed
 #KT-4376 Fixed
2014-01-29 15:58:51 +04:00

11 lines
87 B
Kotlin
Vendored

// MOVE: up
fun foo(x: Boolean) {
if (x) {
}
<caret>while (x) {
}
}