aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/Wmultiple-parameter-fwd-decl-lists.c
blob: c3edbf6a4940f7610cf6c54f175aabd2429b4e55 (plain)
1
2
3
4
5
6
/* { dg-do compile } */
/* { dg-options "-Wmultiple-parameter-fwd-decl-lists" } */

void f(int n, int m; int n, int m);
void g(int n; int m; int n, int m); /* { dg-warning "more than one list of forward declarations" } */
void h(int n; int n; int n); /* { dg-warning "more than one list of forward declarations" } */