1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-02 15:29:33 +00:00
cc65/test/val/bug1245.c

13 lines
153 B
C
Raw Normal View History

2020-09-23 21:57:25 +00:00
/* bug #1245 - ICE for enums with int initializers */
#include <stdlib.h>
enum E {
X = 1000,
} e = 3;
int main(void)
{
return EXIT_SUCCESS;
}