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