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

5 lines
128 B
Kotlin

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