1 // Copyright Abel Sinkovics (abel@sinkovics.hu) 2015.
2 // Distributed under the Boost Software License, Version 1.0.
3 //    (See accompanying file LICENSE_1_0.txt or copy at
4 //          http://www.boost.org/LICENSE_1_0.txt)
5 
6 #include <boost/metaparse/foldr_reject_incomplete1.hpp>
7 #include <boost/metaparse/v1/impl/front_inserter.hpp>
8 
9 #include <boost/mpl/list.hpp>
10 
11 using boost::metaparse::foldr_reject_incomplete1;
12 using boost::metaparse::v1::impl::front_inserter;
13 
14 using boost::mpl::list;
15 
16 namespace
17 {
18   template <class P>
19   struct repeated_reject_incomplete1 :
20     foldr_reject_incomplete1<P, list<>, front_inserter>
21   {};
22 }
23 
24 #define TEST_NAME foldr_reject_incomplete1
25 
26 #include "repeated_reject_incomplete1_test.hpp"
27 
28