6 lines
115 B
Kotlin
Vendored
6 lines
115 B
Kotlin
Vendored
// "Remove variable 'a'" "true"
|
|
var cnt = 5
|
|
fun getCnt() = cnt++
|
|
fun f() {
|
|
var <caret>a = getCnt() // comment
|
|
} |