blob: 96534460ac36307edde9971ac1780c02372a104f [file] [log] [blame]
class Foo {
private var <spot>_x</spot> = ""
var x: String
get() = _x
set(value) {
_x = value
}
}