1 // Compile with:
2 //   g++ -g -Wall -c test28-vtable-changes-v0.cc
3 
4 struct S
5 {
6   void
7   bar();
8 
9   virtual void
10   baz();
11 
12   virtual void
13   foo();
14 };
15 
16 void
bar()17 S::bar()
18 {}
19 
20 void
baz()21 baz()
22 {}
23 
24 void
foo()25 foo()
26 {}
27