Files
kotlin-fork/idea/testData/intentions/introduceBackingProperty/varWithAccessor.kt.after
T
2015-09-25 18:25:37 +02:00

7 lines
121 B
Plaintext
Vendored

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