1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-17 00:29:31 +00:00
cc65/test/err/huge-integer-constant.c

8 lines
117 B
C

/* too big for internal integer representation */
unsigned long huge = 4294967296;
int main(void)
{
return 0;
}