File: cxx-test-static_assert_fail_compile.cpp

package info (click to toggle)
libtins 4.5-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,956 kB
  • sloc: cpp: 34,550; ansic: 603; makefile: 13
file content (5 lines) | stat: -rw-r--r-- 93 bytes parent folder | download | duplicates (14)
1
2
3
4
5
int main(void)
{
	static_assert(1 < 0, "your ordering of integers is screwed");
	return 0;
}