(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr8835-1.c
       1  /* { dg-do compile } */
       2  
       3  struct s {
       4    char c;
       5  };
       6  
       7  struct s
       8  foo (void)
       9  {
      10    struct s s = { 0 };
      11    return s;
      12  }