We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
We have no tests covering the case when
abstract class A { void m(); } abstract class B extends A { void n() { super.m(); // The method 'm' is always abstract in the supertype. • abstract_super_member_reference } }
Possibly there are other missing cases as well