2
0
mirror of https://github.com/boostorg/tti.git synced 2026-01-25 06:42:25 +00:00
Files
tti/test/TestHasStaticMemberFail2.cpp
Edward Diener d28cadf64f Added metafunction and updated doc
[SVN r67600]
2011-01-03 00:02:14 +00:00

14 lines
222 B
C++

#include "TestHasStaticMember.hpp"
#include <boost/mpl/assert.hpp>
int main()
{
// Wrong enclosing type for DSMember
BOOST_MPL_ASSERT((tti::has_static_member_DSMember<AnotherType,short>));
return 0;
}