| 26 | }; |
| 27 | |
| 28 | constexpr bool operator< (test_union l, test_union r) noexcept { return l.i < r.i; } |
| 29 | constexpr bool operator<=(test_union l, test_union r) noexcept { return l.i <= r.i; } |
| 30 | constexpr bool operator> (test_union l, test_union r) noexcept { return l.i > r.i; } |
| 31 | constexpr bool operator>=(test_union l, test_union r) noexcept { return l.i >= r.i; } |
nothing calls this directly
no outgoing calls
no test coverage detected