1 /*============================================================================= 2 Copyright (c) 2016 Lee Clagett 3 4 Use modification and distribution are subject to the Boost Software 5 License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 6 http://www.boost.org/LICENSE_1_0.txt). 7 ==============================================================================*/ 8 9 #include <boost/detail/lightweight_test.hpp> 10 #include <boost/fusion/container/vector.hpp> 11 12 #define FUSION_SEQUENCE boost::fusion::vector 13 #include "conversion.hpp" 14 main()15int main() 16 { 17 test<test_detail::can_copy>(); 18 return boost::report_errors(); 19 } 20