summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/metaparse/test/foldr_reject_incomplete.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/libs/metaparse/test/foldr_reject_incomplete.cpp')
-rw-r--r--src/boost/libs/metaparse/test/foldr_reject_incomplete.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/boost/libs/metaparse/test/foldr_reject_incomplete.cpp b/src/boost/libs/metaparse/test/foldr_reject_incomplete.cpp
new file mode 100644
index 00000000..c4392fb4
--- /dev/null
+++ b/src/boost/libs/metaparse/test/foldr_reject_incomplete.cpp
@@ -0,0 +1,27 @@
+// Copyright Abel Sinkovics (abel@sinkovics.hu) 2015.
+// 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 <boost/metaparse/foldr_reject_incomplete.hpp>
+#include <boost/metaparse/v1/impl/front_inserter.hpp>
+
+#include <boost/mpl/list.hpp>
+
+using boost::metaparse::foldr_reject_incomplete;
+using boost::metaparse::v1::impl::front_inserter;
+
+using boost::mpl::list;
+
+namespace
+{
+ template <class P>
+ struct repeated_reject_incomplete :
+ foldr_reject_incomplete<P, list<>, front_inserter>
+ {};
+}
+
+#define TEST_NAME foldr_reject_incomplete
+
+#include "repeated_reject_incomplete_test.hpp"
+