mirror of
https://github.com/boostorg/tti.git
synced 2026-01-26 07:02:14 +00:00
19 lines
375 B
C++
19 lines
375 B
C++
#include "TestMFHasTemplateCheckParams.hpp"
|
|
#include <boost/mpl/assert.hpp>
|
|
|
|
int main()
|
|
{
|
|
|
|
// Wrong template types
|
|
|
|
BOOST_MPL_ASSERT((tti::mf_has_template_check_params
|
|
<
|
|
tti::WrongParametersForMP,
|
|
boost::mpl::identity<AnotherType>
|
|
>
|
|
));
|
|
|
|
return 0;
|
|
|
|
}
|