summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/test/ext/std/array/issue_304.cpp
blob: 321f18f27e5d6f68dd7d83d06077d4fc06418268 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Jason Rice 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)
// modified from https://github.com/boostorg/hana/issues/304

#include <boost/hana/ext/std/array.hpp>
#include <boost/hana/tuple.hpp>

namespace hana = boost::hana;

struct Foo
{
    Foo() = default;
    Foo(Foo const&) = delete;
    Foo(Foo &&) = default;
};

using bar = decltype(hana::to_tuple(std::array<Foo, 2>()));

int main()
{ }