mirror of
https://github.com/boostorg/tti.git
synced 2026-02-01 21:12:08 +00:00
18 lines
309 B
C++
18 lines
309 B
C++
#include "test_vm_has_template_check_params.hpp"
|
|
#include <boost/mpl/assert.hpp>
|
|
|
|
int main()
|
|
{
|
|
|
|
#if !defined(BOOST_NO_VARIADIC_MACROS)
|
|
|
|
// Wrong template parameters
|
|
|
|
BOOST_MPL_ASSERT((boost::tti::WrongParameters2ForMP<AnotherType>));
|
|
|
|
#endif //!defined(BOOST_NO_VARIADIC_MACROS)
|
|
|
|
return 0;
|
|
|
|
}
|