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

9 lines
129 B
Plaintext
Vendored

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