1 // Copyright Louis Dionne 2013-2017 2 // Distributed under the Boost Software License, Version 1.0. 3 // (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) 4 5 #include <boost/hana/assert.hpp> 6 #include <boost/hana/equal.hpp> 7 #include <boost/hana/ext/std/pair.hpp> 8 9 #include <laws/base.hpp> 10 11 #include <utility> 12 namespace hana = boost::hana; 13 using hana::test::ct_eq; 14 15 main()16int main() { 17 BOOST_HANA_CONSTANT_CHECK(hana::equal( 18 hana::make<hana::ext::std::pair_tag>(ct_eq<0>{}, ct_eq<1>{}), 19 std::make_pair(ct_eq<0>{}, ct_eq<1>{}) 20 )); 21 22 BOOST_HANA_CONSTANT_CHECK(hana::equal( 23 hana::make<hana::ext::std::pair_tag>(ct_eq<3>{}, ct_eq<4>{}), 24 std::make_pair(ct_eq<3>{}, ct_eq<4>{}) 25 )); 26 } 27