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

10 lines
98 B
Kotlin

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