vtk-m/CMake/CheckCXX11Features/cxx11-test-static_assert_fail_compile.cpp

6 lines
93 B
C++
Raw Normal View History

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