OSDN Git Service

* toplev.c (warn_deprecated_use): Correct logic for saying "type"
[pf3gnuchains/gcc-fork.git] / 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" } */
7
8 volatile void (*y)(int);
9
10 volatile void (*vvf(int x))(int) { return y; }