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

11 lines
105 B
Kotlin

// MOVE: down
fun foo(n: Int) {
if (n > 0) {
} else {
}<caret>
while (n > 0) {
}
}