| 1 | package InheritanceTest; |
| 2 | |
| 3 | class Z extends X implements C { |
| 4 | public void c() { |
| 5 | System.out.println("Z.c()"); |
| 6 | } |
| 7 | public void z() { |
| 8 | System.out.println("Z.z()"); |
| 9 | } |
| 10 | void z_() { |
| 11 | System.out.println("Z.z_()"); |
| 12 | } |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected