android13/external/libabigail/tests/data/test-diff-dwarf/test28-vtable-changes-v0.cc

27 lines
195 B
C++

// 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()
{}