| 9 | } |
| 10 | |
| 11 | class A { |
| 12 | |
| 13 | void setget() { |
| 14 | B b = new B(); |
| 15 | b.set(new C()); |
| 16 | C c = b.get(); |
| 17 | } |
| 18 | |
| 19 | void modifyParam() { |
| 20 | B b1 = new B(); |
| 21 | B b2 = new B(); |
| 22 | b1.setC(b2); |
| 23 | C c = b2.c; |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | class B { |
| 28 |
nothing calls this directly
no outgoing calls
no test coverage detected