mirror of
https://github.com/boostorg/tti.git
synced 2026-01-27 07:22:12 +00:00
27 lines
622 B
C++
27 lines
622 B
C++
#include "TestVMMFHasTemplateCheckParams.hpp"
|
|
#include <boost/mpl/assert.hpp>
|
|
|
|
int main()
|
|
{
|
|
|
|
#if !defined(BOOST_NO_VARIADIC_MACROS)
|
|
|
|
// Wrong enclosing type
|
|
|
|
BOOST_MPL_ASSERT((tti::mf_has_template_check_params
|
|
<
|
|
tti::has_template_check_params_CTManyParameters,
|
|
tti::mf_member_type
|
|
<
|
|
tti::member_type_CType,
|
|
boost::mpl::identity<AType>
|
|
>
|
|
>
|
|
));
|
|
|
|
#endif //!defined(BOOST_NO_VARIADIC_MACROS)
|
|
|
|
return 0;
|
|
|
|
}
|