URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [parm-forwdecl-3.c] - Rev 867
Go to most recent revision | Compare with Previous | Blame | View Log
/* 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" } */
Go to most recent revision | Compare with Previous | Blame | View Log