You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// Compile with:
|
|
// g++ -g -Wall -c test28-vtable-changes-v1.cc
|
|
|
|
|
|
struct S
|
|
{
|
|
virtual void
|
|
bar();
|
|
|
|
virtual void
|
|
baz();
|
|
|
|
virtual void
|
|
foo();
|
|
|
|
virtual ~S();
|
|
};
|
|
|
|
void
|
|
S::bar()
|
|
{}
|
|
|
|
void
|
|
baz()
|
|
{}
|
|
|
|
void
|
|
foo()
|
|
{}
|
|
|
|
S::~S()
|
|
{}
|