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