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

5 lines
123 B
Kotlin
Vendored

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