1/* PR c++/5713
2   Test that there are no ICEs after redeclaration error.  */
3
4int foo (const char*, const char*);
5
6void bar (void)
7{
8  const char *s = "bar";
9  int i;			/* { dg-message "note: previous declaration" } */
10  int size = 2;
11  int i = foo (s, s + size);	/* { dg-error "redeclaration of" } */
12}
13