summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/test/tuple/empty_member.cpp
blob: 1bab831852fcc313e620217bebe18a0fa5f503bd (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
// 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/tuple.hpp>
namespace hana = boost::hana;


struct A { };
struct B { };

int main() {
    {
        using T = hana::tuple<int, A>;
        static_assert(sizeof(T) == sizeof(int), "");
    }
    {
        using T = hana::tuple<A, int>;
        static_assert(sizeof(T) == sizeof(int), "");
    }
    {
        using T = hana::tuple<A, int, B>;
        static_assert(sizeof(T) == sizeof(int), "");
    }
    {
        using T = hana::tuple<A, B, int>;
        static_assert(sizeof(T) == sizeof(int), "");
    }
    {
        using T = hana::tuple<int, A, B>;
        static_assert(sizeof(T) == sizeof(int), "");
    }
}