(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr27409.c
       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 *);
      14  void function(int blaz)
      15  {
      16    thang_t *fp = &my_struct.f;
      17    foo(fp);
      18  }