• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*=============================================================================
2     Copyright (C) 2015 Kohei Takahshi
3 
4     Distributed under the Boost Software License, Version 1.0. (See accompanying
5     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 ==============================================================================*/
7 #include <boost/fusion/container/vector/vector.hpp>
8 #include <boost/core/lightweight_test.hpp>
9 
10 #define FUSION_SEQUENCE boost::fusion::vector
11 #include "nest.hpp"
12 
13 int
main()14 main()
15 {
16     test<test_detail::can_nest>();
17     return boost::report_errors();
18 }
19 
20