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