Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / t21.C
blobe91e56786012b1f175e0336b0f4f4c86615bc5b2
1 // { dg-do assemble  }
3 template <class X> class A { public: int a; X x; };
4 template <class X> X f (A<X> a) { return a.x; }
6 extern A<double> a_dbl;
8 double fred () { return f (a_dbl); }