• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Compile this with :
2 //  gcc -g -Wall -c test31-vtable-changes-v0.cc
3 
4 struct S
5 {
6   virtual ~S();
7   virtual void fn0();
8   virtual void fn1();
9 };
10 
~S()11 S::~S()
12 {}
13 
14 void
fn0()15 S::fn0()
16 {}
17 
18 void
fn1()19 S::fn1()
20 {}
21