2015-06-08 11:53:17 +09:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (C) 2015 Kohei Takahshi
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
==============================================================================*/
|
|
|
|
#include <boost/fusion/container/vector/vector.hpp>
|
|
|
|
#include <boost/core/lightweight_test.hpp>
|
|
|
|
|
2016-08-21 16:59:04 -04:00
|
|
|
#define FUSION_SEQUENCE boost::fusion::vector
|
2015-06-08 11:53:17 +09:00
|
|
|
#include "nest.hpp"
|
|
|
|
|
|
|
|
int
|
|
|
|
main()
|
|
|
|
{
|
2016-08-21 16:59:04 -04:00
|
|
|
test<test_detail::can_nest>();
|
2015-06-08 11:53:17 +09:00
|
|
|
return boost::report_errors();
|
|
|
|
}
|
|
|
|
|