blob: ef644eee58d434016dcaa8693eaa2300c12c0247 [file] [log] [blame]
struct A{
typedef int T;
virtual ~A();
};
struct B:public A{
using A::T;
};