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