// Compile with:
// g++ -g -Wall -c test28-vtable-changes-v1.cc
struct S
{
virtual void
bar();
baz();
foo();
virtual ~S();
};
void
S::bar()
{}
baz()
foo()
S::~S()