blob: 606adbb751c5ac4dec423e20eac677fefefb7fb5 [file] [log] [blame]
class Foo {
private var _x = ""
var x: String
get() = _x + "!"
set(value) { _x = value + "!" }
}