Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.robertl / eb110.C
blob96b085f9ba28770c36dcf76f2bb07d69e96ef9d3
1 // { dg-do assemble  }
2 class X
4   public:
5     virtual void f() const = 0;
6 };
8 template <class T>
9 class Y: public X
11   public:
12     virtual void f() const;
15 template <class T>
16 void Y<T>::f() const
20 template <>
21 void Y<bool>::f() const;
23 template <>
24 void Y<bool>::f() const