1 /* { dg-options "-g -fpack-struct" } */
2 typedef struct S S;
3 
4 struct S
5 {
6   struct
7   {
8     S *s;
9   };
10   int a;
11 };
12 
13