blob: 74c4784f655caaef1c6041073cd19e99ff12ea1c [file] [log] [blame]
// (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;
}