| 66 | } |
| 67 | |
| 68 | class Inner { |
| 69 | |
| 70 | static class WhyNot { |
| 71 | |
| 72 | } |
| 73 | |
| 74 | public static void staticMethodInsideInner() { |
| 75 | enum LocalEnum { } |
| 76 | System.out.println(LocalEnum.values()); |
| 77 | } |
| 78 | |
| 79 | public String innerPublic() { |
| 80 | // Test nest-mate |
| 81 | return outerPrivate(); |
| 82 | } |
| 83 | } |
| 84 | } |
nothing calls this directly
no outgoing calls
no test coverage detected