(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr97860.c
       1  /* PR c/97860 */
       2  /* { dg-do compile } */
       3  /* { dg-options "" } */
       4  
       5  void
       6  foo (int n)
       7  {
       8    typedef int T[0];
       9    typedef T V[n];
      10    void bar (V);
      11  }