| 9 | }; |
| 10 | |
| 11 | int main() { |
| 12 | constexpr Spaceship enterprise{2}; |
| 13 | |
| 14 | constexpr Spaceship millenniumFalcon{2}; |
| 15 | |
| 16 | // This will be rewritten: std::operator>=(s.operator<=>(y), 0) |
| 17 | static_assert(enterprise <= millenniumFalcon); |
| 18 | |
| 19 | static_assert(enterprise == millenniumFalcon); |
| 20 | } |
| 21 |
nothing calls this directly
no outgoing calls
no test coverage detected