6 lines
93 B
C++
6 lines
93 B
C++
int main(void)
|
|
{
|
|
static_assert(1 < 0, "your ordering of integers is screwed");
|
|
return 0;
|
|
}
|