aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/decl-4.c
blob: acc7e77e2eabcc410c4a701feba1ec13160997b6 (plain)
1
2
3
4
5
6
7
8
9
10
/* Redeclaration of parameters is an error.  PR 13728.  */
/* { dg-do compile } */

void f (int fred,	/* { dg-error "previous definition" "" } */
	int fred);	/* { dg-error "redefinition of parameter" "" } */

void f2 (int fred,	/* { dg-error "previous definition" "" } */
	 int fred)	/* { dg-error "redefinition of parameter" "" } */
{
}