2015-10-15 10:25:28 +02:00

8 lines
82 B
C++

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