Files
kotlin/idea/testData/quickfix/modifiers/removeRedundantModifier1.kt

9 lines
165 B
Kotlin
Vendored

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