2013-04-06 16:48:33 +02:00

8 lines
82 B
C++

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