aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/Wshadow-1.c
blob: 4d1edf07f00224d99ce94ab3a75719bd8dfdcd0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* { dg-do-compile } */
/* { dg-additional-options "-Wshadow=local -Wno-shadow=compatible-local" } */
int c;
void foo(int *c, int *d)   /* { dg-bogus   "Wshadow" } */
{
  int *e = d;
  {
    int d = 0;             /* { dg-warning "Wshadow=local" } */
  }
  {
    int *e = 0;            /* { dg-bogus   "Wshadow=compatible-local" } */
  }
}
#pragma GCC diagnostic warning "-Wshadow"
void bar(int *c, int *d)   /* { dg-warning "Wshadow" } */
{
  int *e = d;
  {
    int d = 0;             /* { dg-warning "Wshadow" } */
  }
  {
    int *e = 0;            /* { dg-warning "Wshadow" } */
  }
}