OSDN Git Service

Initial revision
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / t35.C
1 // Build don't link: 
2 // Special g++ Options:
3 template<class X> struct A {
4   A ();
5   ~A();
6   int x, y, z;
7 };
8
9 template <class Y> inline A<Y>::A () { x = y = 3; z = 99; }
10 template <class Z> inline A<Z>::~A() { y = 9999; }
11
12 A<int> ai;