1// Copyright Louis Dionne 2013-2022
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>
12namespace hana = boost::hana;
13using hana::test::ct_eq;
14
15
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

source code of boost/libs/hana/test/ext/std/pair/make.cpp