Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wshadow-2.C
blob: a3e9428b6847955d560867fe51542eb8e081e3a2 [
file
] [
log
] [
blame
]
/* { dg-options "-Wshadow" } */
struct
A
{
void
a1
()
{
struct
B
{
B
()
{}
};
// There should be no warning here.
}
void
a2
()
{
struct
B
{
};
}
};