Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
gcc
/
testsuite
/
gcc.dg
/
Wshadow-2.c
blob: b0c051271eed7d1ac9e5b046679388eabf481d17 [
file
] [
log
] [
blame
]
/* Bogus warning for a double declaration of the same extern variable,
first at file scope, then at block scope. PR 13129. */
/* { dg-options "-Wshadow" } */
extern
struct
foo bar
;
void
dummy
()
{
extern
struct
foo bar
;
/* { dg-bogus "shadows" } */
}