6 lines
90 B
Kotlin
6 lines
90 B
Kotlin
// "Make variable mutable" "true"
|
|
class A() {
|
|
var a: Int = 0
|
|
set(v: Int) {}
|
|
}
|