1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-02 15:29:33 +00:00
cc65/test/err/bug1098b.c

14 lines
190 B
C
Raw Normal View History

2020-07-22 12:57:40 +00:00
/* 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;
}