Files
kotlin-fork/idea/testData/quickfix/variables/changeToPropertyName/afterAbstractProperty.kt
T
2013-02-15 19:07:51 +04:00

5 lines
122 B
Kotlin

// "Change '$foo' to 'foo'" "true"
abstract class Foo {
abstract var foo : String
fun bar() = <caret>foo + "bar"
}