| 4 | #include <vector> |
| 5 | |
| 6 | struct A |
| 7 | { |
| 8 | int a; |
| 9 | auto operator<=>(const A &another) const |
| 10 | { |
| 11 | std::print("Hello?"); |
| 12 | return a <=> another.a; |
| 13 | } |
| 14 | auto operator==(const A &another) const |
| 15 | { |
| 16 | std::print("Hello2?"); |
| 17 | return a == another.a; |
| 18 | } |
| 19 | }; |
| 20 | |
| 21 | int main() |
| 22 | { |
nothing calls this directly
no outgoing calls
no test coverage detected