/* PR c++/5713 Test that there are no ICEs after redeclaration error. */intfoo(constchar*,constchar*);voidbar(void){constchar*s="bar";inti;/* { dg-message "note: previous declaration" } */intsize=2;inti=foo(s,s+size);/* { dg-error "redeclaration of" } */}