Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / memtemp70.C
blob8873a3954f85e596395d8cad11330b38bc67dd00
1 // { dg-do assemble  }
3 template <class T>
4 class X {
5 public:
6   T x;
7 };
9 class Y {
10 public:
11   template <class T> static void f(X<T>& a) {}
13   void g(void);
16 void
17 Y::g(void)
19   X<int> a;
21   f(a);
24