repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
other
/
redecl3.C
blob
6d35bf53e9d34278718c6d7d70236715861cd93e
1
// PR c++/22556
2
3
extern int foo[]; // OK
4
int foo[] = {1,2,3};
5
extern int foo[]; // OK
6
7
void bar(){
8
extern int foo[]; // g++: ERROR -- SHOULD BE OK
9
}