Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / compat / break / vbase11.h
bloba298f764415f703a33b5b0fa29db66839c441e83
1 struct base
3 short b;
4 virtual int foo();
5 };
7 struct derived: virtual base
9 int d;
10 virtual int foo();
11 virtual int bar();