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

6 lines
107 B
Kotlin
Vendored

class Foo {
var <caret>x = ""
get() = field + "!"
set(value) { field = value + "!" }
}