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

7 lines
77 B
Plaintext

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