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