2020-07-22 12:57:40 +00:00
|
|
|
|
|
|
|
/* bug #1098 Empty enumerator-list */
|
|
|
|
|
2022-04-17 14:07:52 +00:00
|
|
|
/* The C Standard requires that something exists between the braces for
|
2020-07-22 12:57:40 +00:00
|
|
|
* enum, struct, and union. */
|
|
|
|
|
|
|
|
struct {
|
|
|
|
};
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|