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

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;
}