6 lines
79 B
Kotlin
6 lines
79 B
Kotlin
// "Make variable mutable" "true"
|
|
fun foo() {
|
|
var a = 1
|
|
<caret>a = 3
|
|
}
|