Ticket #11704: test.cc

File test.cc, 202 bytes (added by Matheus Izvekov <mizvekov@…>, 7 years ago)
Line 
1#include <boost/spirit/include/qi.hpp>
2
3namespace qi = boost::spirit::qi;
4
5int main() {
6 auto f = [](qi::unused_type, auto &ctx) { return true; };
7 qi::rule<const char*> r{ qi::eps(f) };
8}