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