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

5 lines
128 B
Kotlin

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