Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / parm-forwdecl-3.c
blobd99188a0bd4a3061762c2b13f4d80c059f6b808e
1 /* Test GNU parameter forward declarations. Error with
2 -pedantic-errors. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-pedantic-errors" } */
7 int f1(int a; int a); /* { dg-error "error: ISO C forbids forward parameter declarations" } */
8 int f2(int a; int a) { return 0; } /* { dg-error "error: ISO C forbids forward parameter declarations" } */