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