1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00
cc65/test/err/bug1098.c
2022-04-17 16:07:52 +02:00

14 lines
188 B
C

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