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