6 lines
97 B
Kotlin
6 lines
97 B
Kotlin
// "Make variable mutable" "true"
|
|
class A() {
|
|
val a: Int = 0
|
|
<caret>set(v: Int) {}
|
|
}
|