Can we override an abstract method with default accessibility being declared in a public(abstract) class and in a package different than that of its subclass?
Here's the code
A compile-time error is what I get..
Sub.java:2: Sub is not abstract and does not override abstract method print() in A.Abstract