1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-03 11:29:42 +00:00
cc65/test/val/bug1244.c

19 lines
195 B
C
Raw Normal View History

2020-09-23 21:57:36 +00:00
/* bug #1244 - ICE for enum bit-fields */
#include <stdlib.h>
enum E {
L = 65535L /* or U = 65535U */
};
struct S {
enum E a : 16;
} s;
int main(void)
{
return EXIT_SUCCESS;
}