summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/test/pair/tag_of.cpp
blob: 285b892e809dfb554b87fab6686f66784fe88e02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright Louis Dionne 2013-2016
// 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 <boost/hana/core/tag_of.hpp>
#include <boost/hana/ext/std/integral_constant.hpp>
#include <boost/hana/integral_constant.hpp>
#include <boost/hana/pair.hpp>

#include <type_traits>
namespace hana = boost::hana;


int main() {
    {
        struct T { }; struct U { };
        static_assert(std::is_same<
            hana::tag_of<hana::pair<T, U>>::type,
            hana::pair_tag
        >{}, "");
    }

    // Bug #1
    {
        using Pair = hana::pair<hana::integral_constant<int, 3>, int>;
        using PairTag = hana::tag_of<Pair>::type;
        using Tag = hana::tag_of<std::integral_constant<unsigned long, 0>>::type;
    }

    // Bug #2
    {
        using Pair = hana::pair<std::integral_constant<int, 3>, int>;
        using PairTag = hana::tag_of<Pair>::type;
        using Tag = hana::tag_of<std::integral_constant<unsigned long, 0>>::type;
    }
}