aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/contrib/reghunt/examples/29906b.cc
blob: ef644eee58d434016dcaa8693eaa2300c12c0247 (plain)
1
2
3
4
5
6
7
struct A{
  typedef int T;
  virtual ~A();
};
struct B:public A{
  using A::T;
};