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