(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
qual-return-4.c
       1  /* Test for warnings for qualified function return types.  -pedantic
       2     test.  Only the definition gets a warning for qualified void return
       3     types, not other such types within the definition.  */
       4  /* Origin: Joseph Myers <jsm@polyomino.org.uk> */
       5  /* { dg-do compile } */
       6  /* { dg-options "-pedantic -std=gnu99" } */
       7  
       8  volatile void (*y)(int);
       9  
      10  volatile void (*vvf(int x))(int) { return y; }