mirror of
https://github.com/boostorg/tti.git
synced 2026-01-25 06:42:25 +00:00
18 lines
325 B
C++
18 lines
325 B
C++
#include "TestVMHasTemplateCheckParams.hpp"
|
|
#include <boost/mpl/assert.hpp>
|
|
|
|
int main()
|
|
{
|
|
|
|
#if !defined(BOOST_NO_VARIADIC_MACROS)
|
|
|
|
// TemplateNotExist does not exist at all
|
|
|
|
BOOST_MPL_ASSERT((tti::has_template_check_params_TemplateNotExist<AType>));
|
|
|
|
#endif //!defined(BOOST_NO_VARIADIC_MACROS)
|
|
|
|
return 0;
|
|
|
|
}
|