Files
kotlin-fork/idea/testData/quickfix/variables/changeToPropertyName/afterCustomAccessors.kt
T
2013-02-19 20:56:27 +04:00

7 lines
127 B
Kotlin

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