Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / field1.C
blobc61437b28d6dbbe4c70919e4a435278f845eba79
1 struct A {
2   void (*f)(void);
3 };
5 template< typename R >
6 struct B : public A {
7   void g()
8   {
9     A::f();
10   }
12 template class B<bool>;