aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/cmake-cxx11/Modules/CheckCXX11Features/cxx11-test-static_assert_fail_compile.cpp
blob: 362fcdde9c4f098506c6b19cde68d916de71c1ee (plain)
1
2
3
4
5
int main(void)
{
	static_assert(1 < 0, "your ordering of integers is screwed");
	return 0;
}