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

12 lines
94 B
Kotlin
Vendored

// MOVE: down
fun foo(x: Boolean) {
<caret>1 + 2
if (x) {
}
else {
}
}