8 lines
86 B
Kotlin
Vendored
8 lines
86 B
Kotlin
Vendored
class AAA {
|
|
private var x = 42
|
|
|
|
fun setX(x: Int) {
|
|
this.x = x
|
|
}
|
|
}
|