summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/test/integral_constant/tag.cpp
blob: 35b420201b6126dcf82758f919c7fb6fa355d9e7 (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
// Copyright Louis Dionne 2013-2017
// 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 <type_traits>
namespace hana = boost::hana;


// Make sure we have the right tag, even when including ext/std/integral_constant.hpp
static_assert(std::is_same<
    hana::tag_of_t<hana::integral_constant<int, 10>>,
    hana::integral_constant_tag<int>
>{}, "");

struct derived : hana::integral_constant<int, 10> { };
static_assert(std::is_same<
    hana::tag_of_t<derived>,
    hana::integral_constant_tag<int>
>{}, "");


int main() { }