URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.dg/] [Wshadow-2.c] - Rev 12
Compare with Previous | Blame | View Log
/* 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" } */ }