cc65/test/err/bug1098a.c

14 lines
190 B
C

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