cc65/test/misc/bug1098b.c
2020-07-22 14:57:40 +02:00

13 lines
190 B
C

/* bug #1098 Empty enumerator-list */
/* The C Standard requires that something exists between the braces for
* enum, struct, and union. */
union {
};
int main(void)
{
return 0;
}