Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / debug / crash1.C
blob4fba256b7cce9678e288d206f5987a84ceef3b1e
1 template <typename T>
2 class foo
4   T t;
5 };
7 class bar;
8 typedef foo<bar> foobar;
10 class obj
12   virtual foobar* yeah() = 0;
15 class bar : virtual public obj