| 17 | }; |
| 18 | |
| 19 | int main() { |
| 20 | auto curry_tuple = hana::make_tuple( |
| 21 | std::make_tuple(hana::curry<2>(DefaultConstructible{})(DefaultConstructible{})) |
| 22 | ); |
| 23 | |
| 24 | auto partial_tuple = hana::make_tuple( |
| 25 | std::make_tuple(hana::partial(DefaultConstructible{}, DefaultConstructible{})) |
| 26 | ); |
| 27 | |
| 28 | auto reverse_partial_tuple = hana::make_tuple( |
| 29 | std::make_tuple(hana::reverse_partial(DefaultConstructible{}, DefaultConstructible{})) |
| 30 | ); |
| 31 | |
| 32 | static_assert(std::is_default_constructible<decltype(curry_tuple)>::value, ""); |
| 33 | static_assert(std::is_default_constructible<decltype(partial_tuple)>::value, ""); |
| 34 | static_assert(std::is_default_constructible<decltype(reverse_partial_tuple)>::value, ""); |
| 35 | } |
nothing calls this directly
no outgoing calls
no test coverage detected