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

5 lines
123 B
Kotlin

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