| 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 |
| 20 | } |
| 21 | } |
| 22 | public class DerivedConstructors { |
| 23 | public static void main(String[] args) { |
| 24 | // TODO Auto-generated method stub |
nothing calls this directly
no outgoing calls
no test coverage detected