blob: 445abb710185b28bfa4f6df5bfd690975be89f95 [file] [log] [blame]
struct S
{
union
{
int tag1[2];
struct
{
int a;
int b;
};
};
union
{
int tag2[2];
struct
{
int c;
int d;
};
};
};
void
foo(struct S* s __attribute__((unused)))
{
}