]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/vmd/test/test_assert_fail_seq.cxx
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / vmd / test / test_assert_fail_seq.cxx
1
2 // (C) Copyright Edward Diener 2011-2015
3 // Use, modification and distribution are subject to the Boost Software License,
4 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt).
6
7 #include <boost/vmd/assert.hpp>
8 #include <boost/vmd/elem.hpp>
9 #include <boost/detail/lightweight_test.hpp>
10 #include <boost/preprocessor/comparison/equal.hpp>
11 #include <boost/preprocessor/seq/elem.hpp>
12 #include <boost/preprocessor/tuple/elem.hpp>
13
14 int main()
15 {
16
17 #if BOOST_PP_VARIADICS
18
19 #define A_SEQ_PLUS (mmf)(34)(^^)(!) 456
20
21 BOOST_VMD_ASSERT(BOOST_PP_EQUAL(BOOST_PP_SEQ_ELEM(1,BOOST_PP_TUPLE_ELEM(0,BOOST_VMD_ELEM(0,A_SEQ_PLUS,BOOST_VMD_RETURN_AFTER,BOOST_VMD_TYPE_SEQ))),456),BOOST_VMD_TEST_FAIL_SEQ)
22
23 #endif
24
25 return boost::report_errors();
26
27 }