You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
261 B

struct S
{
struct
{
int m;
};
struct
{
char bar;
};
struct
{
char baz;
};
enum {one, two} e1;
enum {three, four} e2;
enum {five, six} e3;
union {int a; char b;};
union {unsigned c; double d;};
};
void
foo(S&)
{
}