2
0
mirror of https://github.com/boostorg/tti.git synced 2026-01-27 07:22:12 +00:00
Files
tti/test/TestHasTypeCheckTypedefFail5.cpp
Edward Diener 35029182a8 Updated docs and combined has_type
[SVN r68448]
2011-01-26 00:58:45 +00:00

14 lines
219 B
C++

#include "TestHasTypeCheckTypedef.hpp"
#include <boost/mpl/assert.hpp>
int main()
{
// Wrong typedef type
BOOST_MPL_ASSERT((tti::has_type_AnotherIntegerType<AType::BType::CType,long>));
return 0;
}