]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/tti/test/test_has_template_cp.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / tti / test / test_has_template_cp.cpp
CommitLineData
7c673cae
FG
1
2// (C) Copyright Edward Diener 2011
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 "test_has_template_cp.hpp"
8#include <boost/detail/lightweight_test.hpp>
9
10int main()
11 {
12
13 BOOST_TEST(BOOST_TTI_HAS_TEMPLATE_GEN(ATPMemberTemplate)<AType>::value);
14 BOOST_TEST(BOOST_TTI_HAS_TEMPLATE_GEN(AMemberTemplate)<AType>::value);
15 BOOST_TEST(BOOST_TTI_HAS_TEMPLATE_GEN(SomeMemberTemplate)<AnotherType>::value);
16 BOOST_TEST(BOOST_TTI_HAS_TEMPLATE_GEN(SimpleTMP)<AnotherType>::value);
17 BOOST_TEST(!BOOST_TTI_HAS_TEMPLATE_GEN(TemplateNotExist)<AnotherType>::value);
18
19 BOOST_TEST(HaveCL<AType>::value);
20 BOOST_TEST(HaveAnotherMT<AType>::value);
21 BOOST_TEST(ATemplateWithParms<AnotherType>::value);
22
23 // Passing non-class enclosing type will return false
24
25 BOOST_TEST(!BOOST_TTI_HAS_TEMPLATE_GEN(AMemberTemplate)<unsigned char>::value);
26 BOOST_TEST(!HaveAnotherMT<AType *>::value);
27
28 return boost::report_errors();
29
30 }