Retro68/gcc/contrib/reghunt/examples/29906a.cc
Wolfgang Thaller aaf905ce07 add gcc 4.70
2012-03-28 01:13:14 +02:00

8 lines
82 B
C++

struct A{
typedef int T;
virtual ~A();
};
struct B:public A{
using A::T;
};