blob: 036e9f2a0108d0842c1df5ca2322b8b2c69e3891 [file] [log] [blame]
struct B {
~B();
};
struct D : public B {
~D();
};
void f(D d) {
d.B::~B();
}