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