(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
init-bad-6.c
       1  /* ICE arising from bug computing composite type of zero-length array
       2     types: PR 35433.  */
       3  /* { dg-do compile } */
       4  /* { dg-options "" } */
       5  
       6  typedef int* X;
       7  typedef int* Y;
       8  
       9  X (*p)[][0];
      10  Y (*q)[][0];
      11  
      12  typeof(*(0 ? p : q)) x = { 0 }; /* { dg-warning "excess elements in array initializer|near initialization" } */