Files
cpp-thirdparty/noarch/lib/py/cxxtest/test/IncludeTest.h
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

16 lines
232 B
C++

#include <cxxtest/TestSuite.h>
//
// This is a test for the --include option
//
class IncludesTest : public CxxTest::TestSuite
{
public:
void testTraits()
{
TS_WARN((void *)0);
TS_WARN((long *)0);
}
};