ChaiScript/cmake/c++11-test-static_assert-N1720.cpp
Jason Turner 953c4e4847 Merge branch 'master' into 2011-09-09-CxScript
Conflicts:
	CMakeLists.txt
2012-06-13 21:54:48 -06:00

6 lines
94 B
C++

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