blob: d99188a0bd4a3061762c2b13f4d80c059f6b808e (
plain)
1
2
3
4
5
6
7
8
|
/* Test GNU parameter forward declarations. Error with
-pedantic-errors. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "-pedantic-errors" } */
int f1(int a; int a); /* { dg-error "error: ISO C forbids forward parameter declarations" } */
int f2(int a; int a) { return 0; } /* { dg-error "error: ISO C forbids forward parameter declarations" } */
|