mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
13 lines
153 B
C
13 lines
153 B
C
|
/* bug #1245 - ICE for enums with int initializers */
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
enum E {
|
||
|
X = 1000,
|
||
|
} e = 3;
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|