Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.jason / tempover.C
blob5f56e4e88f11d4bef8e9647f393f6ee306efb0c4
1 // { dg-do assemble  }
2 // GROUPS passed templates overloading
3 #define TEMPL template <class T>
4  
5 class B {};
6  
7 TEMPL class A : virtual public B {
8   public:
9     A(int);
12 TEMPL A<T>::A(int){}
14 A<double> a(1);