Files
kotlin-fork/idea/testData/intentions/introduceBackingProperty/backingFieldRef.kt.after
T
2015-10-09 21:06:26 +03:00

7 lines
121 B
Plaintext
Vendored

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