Added 'incompatible modifiers' error; 'remove redundant modifier' fix

This commit is contained in:
svtk
2011-09-23 13:03:14 +04:00
parent 67fdbbd230
commit 4ac2a46fb4
12 changed files with 186 additions and 21 deletions
@@ -0,0 +1,8 @@
// "Remove redundant 'open' modifier" "true"
abstract class B() {
abstract fun foo()
}
abstract class A() : B() {
<caret>abstract override fun foo()
}