Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / instantiate10.C
blob7d922a87a1b7d13d3ed555419e5e5bc7eb0904cd
1 // { dg-do assemble  }
2 // Origin: Neil Booth, from bug report #44
4 #include <iterator>
6 template<class T>
7 struct X
9 };
11 template<class T>
12 X<T> operator+(const X<T>&, const X<T>&);
14 template<>
15 X<int> operator+<int>(const X<int>&, const X<int>&);