PR middle-end/77674
[official-gcc.git] / gcc / testsuite / g++.dg / other / redecl3.C
blob6d35bf53e9d34278718c6d7d70236715861cd93e
1 // PR c++/22556
3 extern int foo[]; // OK
4 int foo[] = {1,2,3};
5 extern int foo[]; // OK
7 void bar(){
8   extern int foo[]; // g++: ERROR -- SHOULD BE OK