(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr67106.c
       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