gcc/gcc/testsuite/gcc.dg/Wshadow-local-3.c

10 lines
132 B
C

/* { dg-do compile } */
/* { dg-options "-Wno-shadow" } */
void func() {
int i;
{
int i; /* should not warn */
}
}