| 12 | |
| 13 | //app2 -> child class, app -> parent class |
| 14 | class App2 extends App{ |
| 15 | void printFromApp2(){ |
| 16 | App2 obj = new App2(); |
| 17 | System.out.println(obj.a); //public |
| 18 | System.out.println(obj.b); //protected |
| 19 | // System.out.println(obj.c); |
| 20 | // System.out.println(obj.d); |
| 21 | |
| 22 | } |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected