| 10 | } |
| 11 | } |
| 12 | class Derived extends Base { |
| 13 | public Derived() { |
| 14 | System.out.println("Derived class constructor called!"); // Will be called after base class constructor |
| 15 | } |
| 16 | } |
| 17 | class Derived1 extends Derived { |
| 18 | public Derived1() { |
| 19 | System.out.println("Derived1 class constructor called!"); // Will be called after the first derived class |
nothing calls this directly
no outgoing calls
no test coverage detected