// Copyright Abel Sinkovics (abel@sinkovics.hu) 2012. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #include #include #include #include #include #include #include "common.hpp" #include #include #include #include "test_case.hpp" namespace { struct keep_state { typedef keep_state type; template struct apply : S {}; }; } BOOST_METAPARSE_TEST_CASE(foldr_start_with_parser) { using boost::metaparse::foldr_start_with_parser; using boost::metaparse::start; using boost::metaparse::is_error; using boost::metaparse::lit_c; using boost::metaparse::get_result; using boost::mpl::equal_to; using boost::mpl::apply_wrap2; using boost::mpl::char_; typedef foldr_start_with_parser, lit_c<'b'>, keep_state> p; // test_b BOOST_MPL_ASSERT(( equal_to >::type, char_<'b'> > )); // test_ab BOOST_MPL_ASSERT(( equal_to >::type, char_<'b'> > )); // test_aaaab BOOST_MPL_ASSERT(( equal_to >::type, char_<'b'> > )); // test_c BOOST_MPL_ASSERT((is_error >)); // test_ac BOOST_MPL_ASSERT((is_error >)); }