mirror of
https://github.com/boostorg/tti.git
synced 2026-01-25 06:42:25 +00:00
14 lines
231 B
C++
14 lines
231 B
C++
#include "TestHasStaticMember.hpp"
|
|
#include <boost/mpl/assert.hpp>
|
|
|
|
int main()
|
|
{
|
|
|
|
// SomeStaticData does not exist at all
|
|
|
|
BOOST_MPL_ASSERT((tti::has_static_member_SomeStaticData<AnotherType,float>));
|
|
|
|
return 0;
|
|
|
|
}
|