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