Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / memtemp44.C
bloba4a37df919558128181d912021ad513591bd187f
1 // { dg-do link  }
2 // GROUPS passed templates membertemplates
3 template<class T>
4 class A
6 };
8 template<>
9 class A<float>
11 public:
12     template<class U>
13     void func(U v1) {}
16 int main()
18   A<float> a;
19   a.func(3);