| 7 | #include <string> |
| 8 | |
| 9 | struct Address { |
| 10 | std::string city; |
| 11 | std::string street; |
| 12 | uint32_t street_no; |
| 13 | |
| 14 | auto operator<=>(const Address&) const = default; |
| 15 | }; |
| 16 | |
| 17 | int main() |
| 18 | { |
nothing calls this directly
no outgoing calls
no test coverage detected