| 23 | } |
| 24 | |
| 25 | class A{ |
| 26 | void printFromA(){ |
| 27 | System.out.println("Printing from same package but different class"); |
| 28 | App obj = new App(); |
| 29 | System.out.println(obj.a); |
| 30 | System.out.println(obj.b); |
| 31 | System.out.println(obj.c); |
| 32 | // System.out.println(obj.d); |
| 33 | } |
| 34 | } |
nothing calls this directly
no outgoing calls
no test coverage detected