(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr38343.c
       1  /* PR middle-end/38343 */
       2  
       3  static struct A
       4  {
       5    char f[6];
       6  } a[] = { {"01000"} };
       7  
       8  void
       9  foo (void)
      10  {
      11    __builtin_stpcpy (a[0].f, "S0022");
      12  }