view gcc/testsuite/c-c++-common/Wshadow-1.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
line wrap: on
line source

/* { 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" } */
  }
}