aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/debug/using1.C
blob: 7b13e53bb098dc4f9081ad34f44c97d180b49b11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/19406
// { dg-do compile }

struct A
{
  virtual int foo();
  double d;
};

struct B : public A
{
  A::d; // { dg-warning "deprecated" }
};

B b;