summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/test/basic_tuple/construct.cpp
blob: 38b5e0a5ba3e98850cc936423c4128375fdb56ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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/basic_tuple.hpp>
namespace hana = boost::hana;


template <int i>
struct x { };


int main() {
    constexpr hana::basic_tuple<> empty{}; (void)empty;

    constexpr hana::basic_tuple<int, float> xs{1, 2.3f}; (void)xs;
    constexpr auto ys = hana::basic_tuple<int, float>{1, 2.3f};
    constexpr auto copy = ys; (void)copy;
}