Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
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
{
};
}
};