Files
kotlin-fork/idea/testData/quickfix/variables/unusedVariableWithInitializerAndComment.kt.after
T

6 lines
100 B
Plaintext
Vendored

// "Remove variable 'a'" "true"
var cnt = 5
fun getCnt() = cnt++
fun f() {
getCnt() // comment
}