Added 'incompatible modifiers' error; 'remove redundant modifier' fix
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// "Remove redundant 'open' modifier" "true"
|
||||
abstract class B() {
|
||||
abstract fun foo()
|
||||
}
|
||||
|
||||
abstract class A() : B() {
|
||||
<caret>abstract override open fun foo()
|
||||
}
|
||||
Reference in New Issue
Block a user