Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / memtemp52.C
blobf8ae906189cefe39df3e060a863ba665ae54672e
1 // { dg-do assemble  }
2 // GROUPS passed templates membertemplates
3 template<class T, int N>
4 class A { };
6 template<int N>
7 struct X {
8     template<class T2, int N2>
9     void f(A<T2,N>&, A<int,N2>&)
10     { }
14 void foo()
16   X<3> x;
17   A<char*, 3> a1;
18   A<int, 2> a2;
19   x.f(a1, a2);