]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/spirit/test/x3/not_predicate.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / spirit / test / x3 / not_predicate.cpp
CommitLineData
7c673cae
FG
1/*=============================================================================
2 Copyright (c) 2001-2015 Joel de Guzman
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/spirit/home/x3.hpp>
7c673cae
FG
9
10#include <iostream>
11#include "test.hpp"
12
13int
14main()
15{
16 using spirit_test::test;
17 using boost::spirit::x3::int_;
18
19 {
20 BOOST_TEST((!test("1234", !int_)));
21 BOOST_TEST((test("abcd", !int_, false)));
22 BOOST_TEST((!test("abcd", !!int_, false)));
23 }
24
25 return boost::report_errors();
26}