Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
other
/
redecl3.C
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
}