| 13 | }; |
| 14 | |
| 15 | int main() { |
| 16 | BOOST_HANA_CONSTEXPR_CHECK(minus(3, 0) == 3 - 0); |
| 17 | BOOST_HANA_CONSTEXPR_CHECK(hana::flip(minus)(3, 0) == 0 - 3); |
| 18 | |
| 19 | BOOST_HANA_CONSTEXPR_CHECK(minus(3, 0, 1) == 3 - 0 - 1); |
| 20 | BOOST_HANA_CONSTEXPR_CHECK(hana::flip(minus)(3, 0, 1) == 0 - 3 - 1); |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected