Files
kotlin-fork/idea/testData/quickfix/abstract/abstractPropertyWithGetter2.kt
T

5 lines
128 B
Kotlin
Vendored

// "Remove getter and initializer from property" "true"
abstract class B {
abstract val i = <caret>0
get() = field
}