(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr108375-2.c
       1  /* PR 108375
       2   * { dg-do compile }
       3   * { dg-options "" }
       4   * */
       5  
       6  void
       7  f (int a)
       8  {
       9    typedef int A[a];
      10    goto x;	/* { dg-error "jump into scope of identifier with variably modified type" } */
      11    A *p[2];
      12    x : ;
      13  }
      14  
      15