2
0
mirror of https://github.com/boostorg/tti.git synced 2026-01-26 07:02:14 +00:00
Files
tti/test/TestMFHasTypeFail.cpp
Edward Diener ebc6524a56 New tests and support for gcc 4.3.0
[SVN r67412]
2010-12-22 17:26:52 +00:00

19 lines
348 B
C++

#include "TestMFHasType.hpp"
#include <boost/mpl/assert.hpp>
int main()
{
// NoOtherType does not exist at all
BOOST_MPL_ASSERT((tti::mf_has_type
<
tti::has_type_NoOtherType,
boost::mpl::identity<AType>
>
));
return 0;
}