modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/pr67106.c (about) 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