repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wshadow-2.C
blob
a3e9428b6847955d560867fe51542eb8e081e3a2
1
/* { dg-options "-Wshadow" } */
2
3
struct A {
4
void a1 () {
5
struct B { B() {} }; // There should be no warning here.
6
}
7
void a2 () {
8
struct B { };
9
}
10
};