| 5 | #include <compare> |
| 6 | |
| 7 | struct Legacy { |
| 8 | int a; |
| 9 | |
| 10 | // #A These define a weak order |
| 11 | bool operator==(const Legacy&) const; |
| 12 | bool operator<(const Legacy&) const; |
| 13 | }; |
| 14 | |
| 15 | class ShinyCpp20Class { |
| 16 | Legacy mA; |
nothing calls this directly
no outgoing calls
no test coverage detected