mirror of
https://github.com/boostorg/hana.git
synced 2026-01-29 19:42:12 +00:00
22 lines
641 B
C++
22 lines
641 B
C++
/*
|
|
@copyright Louis Dionne 2015
|
|
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/assert.hpp>
|
|
#include <boost/hana/core/convert.hpp>
|
|
#include <boost/hana/equal.hpp>
|
|
#include <boost/hana/tuple.hpp>
|
|
#include <boost/hana/type.hpp>
|
|
namespace hana = boost::hana;
|
|
|
|
|
|
int main() {
|
|
BOOST_HANA_CONSTANT_CHECK(
|
|
hana::to<hana::tuple_tag>(hana::tuple_t<int, char, void, int(float)>)
|
|
==
|
|
hana::make<hana::tuple_tag>(hana::type_c<int>, hana::type_c<char>, hana::type_c<void>, hana::type_c<int(float)>)
|
|
);
|
|
}
|