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 { };
}
};