FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / gcc.dg / noncompile / 20020220-1.c
blobc455f7e9d30aef18af628cd08ea375ed87a7a86b
1 /* PR c++/5713
2 Test that there are no ICEs after redeclaration error. */
4 int foo (const char*, const char*);
6 void bar (void)
8 const char *s = "bar";
9 int i; /* { dg-error "previously declared here" } */
10 int size = 2;
11 int i = foo (s, s + size); /* { dg-error "redeclaration of" } */