08-02-2019, 07:17 AM
Hi,
for the example provided by this rule it means:
The last line is the one which does not meet common developer expectations when looking at the class hierarchy.
for the example provided by this rule it means:
Code:
A a;// compile-time error: A is abstract
B b;// ok
C c;// compile-time error: C is abstract again
The last line is the one which does not meet common developer expectations when looking at the class hierarchy.
<t></t>