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

9 lines
111 B
Kotlin
Vendored

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