| 15 | |
| 16 | |
| 17 | int main() { |
| 18 | auto xs = hana::make_tuple("Hello"s, "world!"s); |
| 19 | |
| 20 | BOOST_HANA_RUNTIME_CHECK( |
| 21 | hana::insert(xs, 1_c, " "s) == hana::make_tuple("Hello"s, " "s, "world!"s) |
| 22 | ); |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected