vmime/cmake/cmake-cxx11/Modules/CheckCXX11Features/cxx11-test-static_assert_fail_compile.cpp

6 lines
93 B
C++
Raw Normal View History

2013-11-21 21:16:57 +00:00
int main(void)
{
static_assert(1 < 0, "your ordering of integers is screwed");
return 0;
}