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