From 66c82d1748a7b5ebba7a3692bf0db3e9c3ea3efd Mon Sep 17 00:00:00 2001 From: No Author Date: Fri, 9 Sep 2005 00:30:59 +0000 Subject: [PATCH] This commit was manufactured by cvs2svn to create branch 'gcc-3_4-branch'. From-SVN: r104063 --- gcc/testsuite/gcc.dg/Wredundant-decls-2.c | 27 +++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 gcc/testsuite/gcc.dg/Wredundant-decls-2.c diff --git a/gcc/testsuite/gcc.dg/Wredundant-decls-2.c b/gcc/testsuite/gcc.dg/Wredundant-decls-2.c new file mode 100644 index 000000000000..b10840fcf959 --- /dev/null +++ b/gcc/testsuite/gcc.dg/Wredundant-decls-2.c @@ -0,0 +1,27 @@ +/* Test for -Wredundant-decls warnings */ +/* { dg-do compile } */ +/* { dg-options "-Wredundant-decls" } */ + +int j = 5; /* { dg-warning "previous" } */ +int j; /* { dg-warning "redundant" } */ + +static int k; +static int k = 5; /* { dg-warning "previous" } */ +static int k; /* { dg-warning "redundant" } */ + +static int l = 5; /* { dg-warning "previous" } */ +static int l; /* { dg-warning "redundant" } */ + +static int m; /* { dg-warning "previous" } */ +static int m; /* { dg-warning "redundant" } */ +static int m = 5; + +int n; /* { dg-warning "previous" } */ +int n; /* { dg-warning "redundant" } */ +int n = 5; + +static int o; +static int o = 5; + +int p; +int p = 5; -- 2.47.2