(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr85244-2.c
       1  struct s {
       2      long a;
       3      int b;
       4      int tab[];
       5  };
       6  
       7  int idx = 1;
       8  const struct s val = { 0, 0, { 42, 1337 } };