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.

27 lines
195 B

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