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