vector_nest.cpp 605 B

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