1
0
mirror of https://github.com/cc65/cc65.git synced 2024-05-29 08:41:31 +00:00
cc65/test/err/bug1890.c

10 lines
151 B
C

/* bug #1890 - Overflow in enumerator value is not detected */
#include <limits.h>
enum { a = ULONG_MAX, b } c = b;
int main(void)
{
return 0;
}