1 /* { dg-do compile } */
2 
3 typedef struct {
4         struct { } z;
5 } thang_t;
6 
7 struct {
8         short           e;
9         thang_t         f;
10         int g;
11 } my_struct;
12 
13 void foo (thang_t *);
function(int blaz)14 void function(int blaz)
15 {
16   thang_t *fp = &my_struct.f;
17   foo(fp);
18 }
19