]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/hana/test/integral_constant/comparable.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / hana / test / integral_constant / comparable.cpp
CommitLineData
b32b8144 1// Copyright Louis Dionne 2013-2017
7c673cae
FG
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/integral_constant.hpp>
6#include <boost/hana/tuple.hpp>
7
8#include <laws/comparable.hpp>
9namespace hana = boost::hana;
10
11
12int main() {
13 constexpr auto ints = hana::make_tuple(
14 hana::int_c<-10>,
15 hana::int_c<-2>,
16 hana::int_c<0>,
17 hana::int_c<1>,
18 hana::int_c<3>,
19 hana::int_c<4>
20 );
21
22 hana::test::TestComparable<hana::integral_constant_tag<int>>{ints};
23}