2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp43.C
blob41731711867f5f162f2d11aa872acc4ff9dd4550
1 // { dg-do link  }
2 // GROUPS passed templates membertemplates
3 template<class T, int N>
4 class A
6 public:
7     template<class U>
8     void operator=(A<U, N> const & a) { return; }
9 };
11 int main()
13     A<float, 3> a;
14     A<double, 3> b;
15     a = b;