| 17 | |
| 18 | |
| 19 | int main() { |
| 20 | auto m = hana::make_map( |
| 21 | hana::make_pair(hana::int_c<1>, "foobar"s), |
| 22 | hana::make_pair(hana::type_c<void>, 1234) |
| 23 | ); |
| 24 | |
| 25 | // The order of the values is unspecified. |
| 26 | BOOST_HANA_RUNTIME_CHECK( |
| 27 | hana::values(m) ^hana::in^ hana::permutations(hana::make_tuple("foobar"s, 1234)) |
| 28 | ); |
| 29 | } |
nothing calls this directly
no outgoing calls
no test coverage detected