2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / 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;