1 struct Base {
2   ~Base();
3 };
4 
5 struct Foo : public Base {
6   ~Base();
7 };
8