mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
6 lines
79 B
Kotlin
Vendored
6 lines
79 B
Kotlin
Vendored
// "Make variable mutable" "true"
|
|
fun foo() {
|
|
val a = 1
|
|
<caret>a = 3
|
|
}
|