7 lines
85 B
Kotlin
Vendored
7 lines
85 B
Kotlin
Vendored
class AAA {
|
|
var x = 42
|
|
set(x: Int) {
|
|
this.x += x
|
|
}
|
|
}
|