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;
}