1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00

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

View File

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