1 /*============================================================================= 2 Copyright (C) 2016 Lee Clagett 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 8 #include <boost/detail/lightweight_test.hpp> 9 #include <boost/fusion/container/list.hpp> 10 #include <boost/fusion/container/vector.hpp> 11 12 #define FUSION_SEQUENCE boost::fusion::vector 13 #define FUSION_ALT_SEQUENCE boost::fusion::list 14 #include "traits.hpp" 15 main()16int main() { 17 test_convertible(true /* has conversion construction */ ); 18 19 // C++11 models overly aggressive (bug) implicit conversion from C++03 20 BOOST_TEST(( 21 is_convertible< 22 boost::fusion::list<int> 23 , boost::fusion::vector< boost::fusion::list<int> > 24 >(true) 25 )); 26 27 #if defined(FUSION_TEST_HAS_CONSTRUCTIBLE) 28 test_constructible(); 29 #endif 30 31 return boost::report_errors(); 32 } 33