blob: 80f66913b7afe1dda41c4577250eec4201514cc6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// { dg-do assemble }
// { dg-options "-Wshadow" }
int
main(int i) { // { dg-warning "" } shadowed decl
for(int i=1; i < 3; i++); // { dg-warning "" } declaration of
for(int i=1; i < 3; i++); // { dg-warning "" } declaration of
for(int j=1; j < 3; j++);
for(int j=1; j < 3; j++);
}
|