xref: /netbsd-src/external/gpl3/gcc/dist/contrib/reghunt/examples/29906b.cc (revision 4fee23f98c45552038ad6b5bd05124a41302fb01)
1 struct A{
2   typedef int T;
3   virtual ~A();
4 };
5 struct B:public A{
6   using A::T;
7 };
8