mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
10 lines
160 B
C
10 lines
160 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;
|
||
|
}
|