boost/libs/tti/test/test_has_static_mem_data_compile.cpp
2021-10-05 21:37:46 +02:00

32 lines
878 B
C++

// (C) Copyright Edward Diener 2011
// Use, modification and distribution are subject to the Boost Software License,
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt).
#include "test_has_static_mem_data.hpp"
#include <boost/mpl/assert.hpp>
int main()
{
// You can always instantiate without compiler errors
BOOST_TTI_HAS_STATIC_MEMBER_DATA_GEN(SomeStaticData)<AnotherType,long> aVar2;
// Compile time asserts
BOOST_MPL_ASSERT((BOOST_TTI_HAS_STATIC_MEMBER_DATA_GEN(DSMember)<AType,short>));
BOOST_MPL_ASSERT((StatName<AnotherType,AType::AStructType>));
#if !defined(BOOST_NO_CXX11_UNRESTRICTED_UNION)
BOOST_MPL_ASSERT((UnionStatic<AType::AnUnion,float>));
BOOST_MPL_ASSERT((BOOST_TTI_HAS_STATIC_MEMBER_DATA_GEN(ASCData)<AnotherType::AnotherUnion,char>));
#endif
return 0;
}