// Copyright Louis Dionne 2013-2022 // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) #include "minimal.hpp" #include #include namespace hana = boost::hana; int main() { constexpr auto ints = hana::make_tuple( minimal_constant{}, minimal_constant{}, minimal_constant{}, minimal_constant{}, minimal_constant{} ); constexpr auto convertible_types = hana::tuple_t; hana::test::TestConstant>{ints, convertible_types}; }