Files
kotlin-fork/idea/testData/codeInsight/moveUpDown/expressions/intoElse2.kt
T
2014-01-29 15:58:53 +04:00

12 lines
97 B
Kotlin

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