(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr37433-1.c
       1  /* { dg-require-effective-target indirect_calls } */
       2  
       3  void regex_subst(void)
       4  {
       5    const void *subst = "";
       6    (*(void (*)(int))subst) (0);
       7  }
       8  
       9  void foobar (void)
      10  {
      11    int x;
      12    (*(void (*)(void))&x) ();
      13  }