9 lines
165 B
Kotlin
9 lines
165 B
Kotlin
// "Remove redundant 'open' modifier" "true"
|
|
abstract class B() {
|
|
abstract fun foo()
|
|
}
|
|
|
|
abstract class A() : B() {
|
|
abstract <caret>open override fun foo()
|
|
}
|