Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / spec2.C
blob68c680e5372e4588598a3b4d17cce440bf39130c
1 // { dg-do assemble  }
3 class X
5   public:
6     virtual void f() const = 0;
7 };
9 template <class T>
10 class Y: public X
12   public:
13     virtual void f() const;
16 template <class T>
17 void Y<T>::f() const
21 template <>
22 void Y<bool>::f() const;
24 template <>
25 void Y<bool>::f() const