mirror of
https://github.com/boostorg/tti.git
synced 2026-01-25 18:52:17 +00:00
15 lines
297 B
C++
15 lines
297 B
C++
#include "TestMFHasMemberData.hpp"
|
|
#include <boost/mpl/assert.hpp>
|
|
#include <boost/mpl/identity.hpp>
|
|
|
|
int main()
|
|
{
|
|
|
|
// Wrong enclosing type
|
|
|
|
BOOST_MPL_ASSERT((tti::mf_has_member_data<tti::has_member_aMember,boost::mpl::identity<AType>,boost::mpl::identity<bool> >));
|
|
|
|
return 0;
|
|
|
|
}
|