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

5 lines
128 B
Kotlin
Vendored

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