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