merge with trunk @ 139506
[official-gcc.git] / gcc / testsuite / gcc.dg / Wredundant-decls-2.c
blob89f57b427c65a9ffc3861f3d99bb96beb892db2a
1 /* Test for -Wredundant-decls warnings */
2 /* { dg-do compile } */
3 /* { dg-options "-Wredundant-decls" } */
5 int j = 5; /* { dg-message "note: previous" } */
6 int j; /* { dg-warning "redundant" } */
8 static int k;
9 static int k = 5; /* { dg-message "note: previous" } */
10 static int k; /* { dg-warning "redundant" } */
12 static int l = 5; /* { dg-message "note: previous" } */
13 static int l; /* { dg-warning "redundant" } */
15 static int m; /* { dg-message "note: previous" } */
16 static int m; /* { dg-warning "redundant" } */
17 static int m = 5;
19 int n; /* { dg-message "note: previous" } */
20 int n; /* { dg-warning "redundant" } */
21 int n = 5;
23 static int o;
24 static int o = 5;
26 int p;
27 int p = 5;