| 23 | }; |
| 24 | |
| 25 | int main() { |
| 26 | constexpr int y = 2; |
| 27 | |
| 28 | constexpr Spaceship millenniumFalcon{3}; |
| 29 | |
| 30 | // This will be rewritten: std::operator>=(s.operator<=>(y), 0) |
| 31 | static_assert(millenniumFalcon >= y); |
| 32 | |
| 33 | static_assert(y <= millenniumFalcon); |
| 34 | |
| 35 | static_assert(not (y == millenniumFalcon)); |
| 36 | static_assert(not (millenniumFalcon == y)); |
| 37 | } |
| 38 |
nothing calls this directly
no outgoing calls
no test coverage detected