(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
init-bad-7.c
       1  /* PR c/37724 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-std=gnu99 -pedantic" } */
       4  
       5  struct f
       6  {
       7    int *a;
       8  };
       9  
      10  char b[10];
      11  struct f g = {b}; /* { dg-warning "initialization of 'int \\*' from incompatible pointer type|near initialization for" } */