| 358 | private int countI = 0; |
| 359 | |
| 360 | private class CountI implements I { |
| 361 | public void f() { countI++; } |
| 362 | |
| 363 | public void e() throws Exception {} |
| 364 | public I i() { return null; } |
| 365 | public S s() { return null; } |
| 366 | public String stoString(S s) { return ""; } |
| 367 | public long v() { return 0; } |
| 368 | public long ve() throws Exception { return 0; } |
| 369 | public String string() { return ""; } |
| 370 | } |
| 371 | |
| 372 | public void testGoRefMapGrow() { |
| 373 | CountI obj = new CountI(); |
nothing calls this directly
no outgoing calls
no test coverage detected