Files
kotlin-fork/idea/testData/quickfix/modifiers/beforeRemoveRedundantModifier2.kt
T

9 lines
165 B
Kotlin

// "Remove redundant 'open' modifier" "true"
abstract class B() {
abstract fun foo()
}
abstract class A() : B() {
abstract <caret>open override fun foo()
}