blob: c73aa83d42166b10ad4767f84fa8533ef91eb3a0 [file]
class Foo {
private var _x = ""
var x: String
get() = _x
set(value) {
_x = value
}
}