2
0
mirror of https://github.com/boostorg/tti.git synced 2026-01-25 06:42:25 +00:00
Files
tti/test/TestVMHasTemplateCheckParamsFail4.cpp
Edward Diener 9dbb6c128e Added metafunction and updated doc.
[SVN r67598]
2011-01-02 21:20:16 +00:00

18 lines
297 B
C++

#include "TestVMHasTemplateCheckParams.hpp"
#include <boost/mpl/assert.hpp>
int main()
{
#if !defined(BOOST_NO_VARIADIC_MACROS)
// Wrong template parameters
BOOST_MPL_ASSERT((tti::WrongParameters2ForMP<AnotherType>));
#endif //!defined(BOOST_NO_VARIADIC_MACROS)
return 0;
}