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

12 lines
129 B
Kotlin

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