(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
comp-goto-6.c
       1  /* PR c/32122 */
       2  /* { dg-do compile } */
       3  /* { dg-options "" } */
       4  void foo(void *a) { goto *10000000; } /* { dg-error "computed goto must be pointer type" } */
       5  void foo1(void *a) { goto *a; }
       6