No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / warn / Wshadow-2.C
bloba3e9428b6847955d560867fe51542eb8e081e3a2
1 /* { dg-options "-Wshadow" } */
3 struct A {
4   void a1 () {
5     struct B { B() {} }; // There should be no warning here.
6   }
7   void a2 () {
8       struct B { };
9   }