error test for integer constant too large for internal representation

This commit is contained in:
bbbradsmith 2023-05-03 17:55:02 -04:00
parent 9a502c69dc
commit 49bd568113
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
/* too big for internal integer representation */
unsigned long huge = 4294967296;
int main(void)
{
return 0;
}