blob: 4bfae43be3774edb43127e3e28d52d29054912cc [file] [log] [blame]
/* { dg-do compile } */
typedef struct {
struct { } z;
} thang_t;
struct {
short e;
thang_t f;
int g;
} my_struct;
void foo (thang_t *);
void function(int blaz)
{
thang_t *fp = &my_struct.f;
foo(fp);
}