1
0
Fork 0
arangodb/cmake/CheckCXX11Features/cxx11-test-static_assert_fa...

6 lines
93 B
C++

int main(void)
{
static_assert(1 < 0, "your ordering of integers is screwed");
return 0;
}