DEBSOURCES
Skip Quicknav
sources / kotlin / 1.3.31%2Bds1-3 / idea / resources / intentionDescriptions / IntroduceBackingPropertyIntention / after.kt.template
12345678
class Foo { private var <spot>_x</spot> = "" var x: String get() = _x set(value) { _x = value } }