aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/Wshadow-2.C
blob: a3e9428b6847955d560867fe51542eb8e081e3a2 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-options "-Wshadow" } */

struct A {
  void a1 () {
    struct B { B() {} }; // There should be no warning here.
  }
  void a2 () {
      struct B { };
  }
};