8 lines
82 B
C++
Raw Normal View History

2012-03-28 01:13:14 +02:00
struct A{
typedef int T;
virtual ~A();
};
struct B:public A{
using A::T;
};