This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / testsuite / g++.dg / expr / dtor3.C
blob036e9f2a0108d0842c1df5ca2322b8b2c69e3891
1 struct B {
2   ~B();
3 };
4 struct D : public B {
5   ~D();
6 };
8 void f(D d) {
9   d.B::~B();