| 11 | |
| 12 | |
| 13 | int main() { |
| 14 | constexpr hana::basic_tuple<> empty{}; (void)empty; |
| 15 | |
| 16 | constexpr hana::basic_tuple<int, float> xs{1, 2.3f}; (void)xs; |
| 17 | constexpr auto ys = hana::basic_tuple<int, float>{1, 2.3f}; |
| 18 | constexpr auto copy = ys; (void)copy; |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected