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

5 lines
64 B
Kotlin
Vendored

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