PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / Wshadow-1.c
blob0d15aac59c597e77f13dea4ade66adf8e2d3466c
1 /* Copyright (C) 2001 Free Software Foundation, Inc. */
3 /* { dg-do compile } */
4 /* { dg-options "-Wshadow -pedantic-errors" } */
6 /* Source: Neil Booth, 5 Dec 2001. */
8 int decl1; /* { dg-message "shadowed declaration" } */
9 void foo (double decl1) /* { dg-warning "shadows a global decl" } */
13 void foo1 (int d) /* { dg-message "note: previous definition" } */
15 double d; /* { dg-bogus "warning" "warning in place of error" } */
16 /* { dg-error "redeclared as different" "" { target *-*-* } .-1 } */
19 void foo2 (int d) /* { dg-message "shadowed declaration" } */
22 double d; /* { dg-warning "shadows a parameter" } */
26 void foo3 ()
28 int local; /* { dg-message "shadowed declaration" } */
30 int local; /* { dg-warning "shadows a previous local" } */