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