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

7 lines
77 B
Plaintext
Vendored

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