boost/libs/hana/test/ext/std/array/issue_304.cpp
2018-01-12 21:47:58 +01:00

22 lines
510 B
C++

// 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()
{ }