blob: 5f1c12cc5c4aae2a5330707812665ddfb180bc4a [file] [log] [blame]
// Compile this with :
// gcc -g -Wall -c test29-vtable-changes-v0.cc
struct S
{
virtual ~S();
virtual void fn0();
};
S::~S()
{}
void
S::fn0()
{}