2
0
mirror of https://github.com/boostorg/tti.git synced 2026-01-25 18:52:17 +00:00
Files
tti/test/TestMFHasMemberDataFail3.cpp
Edward Diener 344360c629 Changes to functionality for version 1.1
[SVN r68610]
2011-02-02 01:44:12 +00:00

20 lines
402 B
C++

#include "TestMFHasMemberData.hpp"
#include <boost/mpl/assert.hpp>
int main()
{
// Wrong enclosing type
BOOST_MPL_ASSERT((tti::mf_has_member_data
<
tti::has_member_data_aMember,
boost::mpl::identity<AType>,
boost::mpl::identity<bool>
>
));
return 0;
}