1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-06 08:25:54 +00:00
Files
cc65/test/err/bug1890.c
2022-11-03 18:27:10 +01:00

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