mirror of
https://github.com/boostorg/tti.git
synced 2026-01-25 18:52:17 +00:00
14 lines
214 B
C++
14 lines
214 B
C++
#include "TestHasTemplate.hpp"
|
|
#include <boost/mpl/assert.hpp>
|
|
|
|
int main()
|
|
{
|
|
|
|
// TemplateNotExist does not exist at all
|
|
|
|
BOOST_MPL_ASSERT((tti::has_template_TemplateNotExist<AType>));
|
|
|
|
return 0;
|
|
|
|
}
|