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