| 1 | import pw.skills.*; |
| 2 | |
| 3 | public class Main { |
| 4 | public static void main(String[] args) { |
| 5 | App obj = new App(); |
| 6 | System.out.println(obj.a); |
| 7 | // System.out.println(obj.b); |
| 8 | // System.out.println(obj.c); |
| 9 | // System.out.println(obj.d); |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | //app2 -> child class, app -> parent class |
| 14 | class App2 extends App{ |
nothing calls this directly
no outgoing calls
no test coverage detected