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

20 lines
413 B
C++

#include "TestMFHasMemberData.hpp"
#include <boost/mpl/assert.hpp>
int main()
{
// Wrong data signature for AnInt
BOOST_MPL_ASSERT((tti::mf_has_member_data
<
tti::has_member_AnInt,
boost::mpl::identity<AnotherType>,
boost::mpl::identity<double>
>
));
return 0;
}