| 10 | } |
| 11 | |
| 12 | class A { |
| 13 | public B foo(B b) { |
| 14 | B b1 = b; |
| 15 | B b2 = goo(b1); |
| 16 | return b2; |
| 17 | } |
| 18 | |
| 19 | public B goo(B b) { |
| 20 | B b3 = b; |
| 21 | B b4 = foo(b3); |
| 22 | return b4; |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | class B { |
| 27 |
nothing calls this directly
no outgoing calls
no test coverage detected