1 /* { dg-options "-Wshadow" } */
2 
3 struct A {
a1A4   void a1 () {
5     struct B { B() {} }; // There should be no warning here.
6   }
a2A7   void a2 () {
8       struct B { };
9   }
10 };
11