avoid warnings on super abstract methods that they try to assign weaker access (IDEA-67584)

This commit is contained in:
Anna Kozlova
2013-08-22 21:59:24 +04:00
parent 5ee69d4938
commit 425a1e03fa
3 changed files with 13 additions and 0 deletions
@@ -0,0 +1,11 @@
abstract class A
{
abstract void foo();
}
interface B
{
abstract void foo();
}
abstract class C extends A implements B { }