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

5 lines
122 B
Plaintext
Vendored

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