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

6 lines
75 B
Plaintext
Vendored

class Foo {
private val _x = ""
val x: String
get() = _x
}