class Foo { private var _x = "" var x: String get() = _x + "!" set(value) { _x = value + "!" } }