| 7 | |
| 8 | class InnerA { |
| 9 | private static class C implements A { |
| 10 | @Override public void f() { |
| 11 | System.out.println("public C.f()"); |
| 12 | } |
| 13 | public void g() { |
| 14 | System.out.println("public C.g()"); |
| 15 | } |
| 16 | void u() { |
| 17 | System.out.println("package C.u()"); |
| 18 | } |
| 19 | protected void v() { |
| 20 | System.out.println("protected C.v()"); |
| 21 | } |
| 22 | private void w() { |
| 23 | System.out.println("private C.w()"); |
| 24 | } |
| 25 | } |
| 26 | public static A makeA() { return new C(); } |
| 27 | } |
| 28 |
nothing calls this directly
no outgoing calls
no test coverage detected