1 /*============================================================================= 2 Copyright (c) 2014 Louis Dionne 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/detail/lightweight_test.hpp> 8 #include <boost/fusion/container/list/cons_iterator.hpp> 9 #include <boost/fusion/container/list/nil.hpp> 10 #include <boost/fusion/support/config.hpp> 11 #include <boost/mpl/bool.hpp> 12 13 main()14int main() { 15 using namespace boost::fusion; 16 17 // nil should be constexpr constructible 18 { 19 BOOST_CONSTEXPR nil x1 = nil(); 20 BOOST_CONSTEXPR nil x2 = nil(nil_iterator(), boost::mpl::true_()); 21 (void)x1; (void)x2; 22 } 23 24 return boost::report_errors(); 25 } 26