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