blob: 375dbe41bde4471993593600dadc078cb2ab1b15 [file] [log] [blame]
#include "lib.h"
struct Derived_Private : public Base
{
virtual ~Derived_Private()
{ printf("in Derived_Private destructor\n"); }
};
Base * GetPrivate()
{
return new Derived_Private();
}
void Destroy(Base * pb)
{
delete pb; // Virtual call #1
}