Files
kotlin/idea/testData/codeInsight/unwrapAndRemove/unwrapLoop/doWhile.kt
2013-06-21 18:18:08 +04:00

9 lines
114 B
Kotlin
Vendored

// OPTION: 1
fun foo(n: Int) {
var m = n
<caret>do {
m--
println(m)
} while (m > 0)
}