1// Compile this with :
2//  gcc -g -Wall -c test31-vtable-changes-v1.cc
3
4struct S
5{
6  virtual ~S();
7  virtual void fn1();
8};
9
10S::~S()
11{}
12
13void
14S::fn1()
15{}
16