repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
In gcc/testsuite/: 2011-03-04 Nicola Pero <nicola.pero@meta-innovation.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
Wshadow-2.c
blob
b0c051271eed7d1ac9e5b046679388eabf481d17
1
/* Bogus warning for a double declaration of the same extern variable,
2
first at file scope, then at block scope. PR 13129. */
3
4
/* { dg-options "-Wshadow" } */
5
6
extern
struct
foo bar
;
7
void
dummy
()
8
{
9
extern
struct
foo bar
;
/* { dg-bogus "shadows" } */
10
}