1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-20 02:17:07 +00:00
Files
cc65/test/err/huge-integer-constant.c
T

8 lines
117 B
C

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