Super is non static variable, so it should be used with some object reference. But here below, the object is not yet created, so on which object super is called ?
class A{}
class B extends A{
B() { super(); }
If object of B is created in main method.