mirror of
https://github.com/cc65/cc65.git
synced 2024-11-18 15:05:14 +00:00
10 lines
151 B
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;
|
|
}
|