Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / ttp24.C
blob999ec6cbe6ff524a3240c15396f0ba2898616a29
1 // { dg-do run  }
2 template<class T> class D
4         public:
5                 int f();
6 };
8 template<class T> int D<T>::f()
10         return sizeof(T);
13 template<template<class> class D,class E> int f()
15         D<E> d;
16         return d.f();
19 int main()
21         f<D,int>();
22         f<D,char>();