PR tree-optimization/84740
[official-gcc.git] / gcc / testsuite / gcc.dg / Wshadow-compatible-local-1.c
blobed7b2e45ef19694f38ec382fda30de4580fa6d65
1 /* { dg-do compile } */
2 /* { dg-options "-Wshadow=compatible-local" } */
4 struct Bar {
5 };
7 struct Bar bar; /* { dg-bogus "shadowed declaration" } */
9 int val; /* { dg-bogus "shadowed declaration" } */
11 int func1(int x) { /* { dg-bogus "shadowed declaration" } */
12 int val; /* { dg-bogus "shadows a global" } */
13 val = x;
14 return val;
17 int func2(int i) {
18 int a = 3; /* { dg-message "shadowed declaration" } */
19 int j; /* { dg-message "shadowed declaration" } */
21 for (j = 0; j < i; ++j) {
22 int a = j; /* { dg-warning "shadows a previous local" } */
23 int j = a + 1; /* { dg-warning "shadows a previous local" } */
24 func1(j);
27 return a;
30 void func4() {
31 struct Bar bar; /* { dg-bogus "shadowed declaration" } */
32 if (val) {
33 int bar; /* { dg-bogus "shadows a previous local" } */
34 func1(bar);