OSDN Git Service

PR c++/37276
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / Wshadow-2.C
1 /* { dg-options "-Wshadow" } */
2
3 struct A {
4   void a1 () {
5     struct B { B() {} }; // There should be no warning here.
6   }
7   void a2 () {
8       struct B { };
9   }
10 };