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

11 lines
113 B
Plaintext

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