| 63 | int value = 0; |
| 64 | }; |
| 65 | struct B { |
| 66 | int value = 0; |
| 67 | B& operator=(B const& b) { |
| 68 | value = b.value; |
| 69 | return *this; |
| 70 | } |
| 71 | B& operator=(B&& b) { |
| 72 | value = b.value; |
| 73 | return *this; |
| 74 | } |
| 75 | }; |
| 76 | struct C { |
| 77 | int value; |
| 78 | template <class U> |
nothing calls this directly
no outgoing calls
no test coverage detected