| 37 | } |
| 38 | |
| 39 | static class A { |
| 40 | |
| 41 | B b; |
| 42 | |
| 43 | A() { |
| 44 | this.b = new B(); |
| 45 | } |
| 46 | |
| 47 | A(B b) { |
| 48 | this.b = b; |
| 49 | } |
| 50 | |
| 51 | A(B b1, B b2) { |
| 52 | if (hashCode() > 0) { |
| 53 | b = b1; |
| 54 | } else { |
| 55 | b = b2; |
| 56 | } |
| 57 | } |
| 58 | } |
| 59 | } |
nothing calls this directly
no outgoing calls
no test coverage detected