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

9 lines
165 B
Kotlin
Vendored

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