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

5 lines
108 B
Kotlin

// "Remove getter and initializer from property" "true"
abstract class B {
abstract val i: Int<caret>
}