6 lines
69 B
C++
6 lines
69 B
C++
int main()
|
|
{
|
|
static_assert(1 < 0, "this should fail");
|
|
return 0;
|
|
}
|