Files
kotlin-fork/idea/resources/intentionDescriptions/IntroduceBackingPropertyIntention/after.kt.template
T
2015-09-25 18:25:37 +02:00

9 lines
142 B
Plaintext

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