Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / t35.C
blob70d8846f984b49661cf7a5cebf1a603e2a42d4c3
1 // { dg-do assemble  }
2 // { dg-options "" }
3 template<class X> struct A {
4   A ();
5   ~A();
6   int x, y, z;
7 };
9 template <class Y> inline A<Y>::A () { x = y = 3; z = 99; }
10 template <class Z> inline A<Z>::~A() { y = 9999; }
12 A<int> ai;