(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
other/
redecl3.C
// PR c++/22556

extern int foo[]; // OK
int foo[] = {1,2,3};
extern int foo[]; // OK

void bar(){
  extern int foo[]; // g++: ERROR -- SHOULD BE OK
}