(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr85704.c
       1  /* PR c/85704 */
       2  
       3  struct C { struct {} c; };
       4  struct D { int d; struct C e; int f; };
       5  
       6  void
       7  foo (struct D *x)
       8  {
       9    *x = (struct D) { .e = (struct C) { .c = {} } };
      10  }