Files
kotlin-fork/idea/testData/quickfix/variables/changeToPropertyName/customAccessors.kt.after
T

7 lines
127 B
Plaintext
Vendored

// "Change '$foo' to 'foo'" "true"
class A {
val foo : Int
get() = 5
val bar : Int
get() = <caret>foo
}