1// Compile this with : 2// gcc -g -Wall -c test30-vtable-changes-v1.cc 3 4struct S 5{ 6 virtual ~S(); 7 virtual void fn0(); 8 virtual void fvtable_breaker(); 9 virtual void fn1(); 10}; 11 12S::~S() 13{} 14 15void 16S::fn0() 17{} 18 19void 20S::fn1() 21{} 22 23void 24S::fvtable_breaker() 25{} 26