| 15 | } |
| 16 | |
| 17 | class A { |
| 18 | B f; |
| 19 | |
| 20 | void set(B b) { |
| 21 | this.doSet(b); |
| 22 | } |
| 23 | |
| 24 | void doSet(B p) { |
| 25 | this.f = p; |
| 26 | } |
| 27 | |
| 28 | B get() { |
| 29 | return this.f; |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | class B { |
| 34 | } |
nothing calls this directly
no outgoing calls
no test coverage detected