diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/Wshadow-1.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/Wshadow-1.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/Wshadow-1.c b/gcc/testsuite/gcc.dg/Wshadow-1.c new file mode 100644 index 000000000..40073f337 --- /dev/null +++ b/gcc/testsuite/gcc.dg/Wshadow-1.c @@ -0,0 +1,32 @@ +/* Copyright (C) 2001 Free Software Foundation, Inc. */ + +/* { dg-do compile } */ +/* { dg-options "-Wshadow -pedantic-errors" } */ + +/* Source: Neil Booth, 5 Dec 2001. */ + +int decl1; /* { dg-warning "shadowed declaration" } */ +void foo (double decl1) /* { dg-warning "shadows a global decl" } */ +{ +} + +void foo1 (int d) /* { dg-message "note: previous definition" } */ +{ + double d; /* { dg-bogus "warning" "warning in place of error" } */ + /* { dg-error "redeclared as different" "" { target *-*-* } 15 } */ +} + +void foo2 (int d) /* { dg-warning "shadowed declaration" } */ +{ + { + double d; /* { dg-warning "shadows a parameter" } */ + } +} + +void foo3 () +{ + int local; /* { dg-warning "shadowed declaration" } */ + { + int local; /* { dg-warning "shadows a previous local" } */ + } +} |