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