aboutsummaryrefslogtreecommitdiffstats
path: root/cxx11/c++11-test-static_assert-N1720.cpp
blob: eae3c9a241e4e5b2622a0519d5afc2e1c552521e (plain)
1
2
3
4
5
int main()
{
	static_assert(0 < 1, "your ordering of integers is screwed");
	return 0;
}