Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.other / typedef3.C
blob99076b4e625ddc9619609c03b1300667e12dbb65
1 // { dg-do assemble  }
2 template<class T>
3 struct X{
4   T v;
5   X(){}
6   virtual ~X(){}
7   virtual inline T f(T x){return x;}
8 };
10 void f()
12   typedef int H;
13   X<H> y;