blob: 6d35bf53e9d34278718c6d7d70236715861cd93e [file] [log] [blame]
// 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
}