blob: 81f4b51788996072afae3c186c16b53498b54df9 [file] [log] [blame]
// "Remove redundant 'open' modifier" "true"
abstract class B() {
abstract fun foo()
}
abstract class A() : B() {
abstract <caret>open override fun foo()
}