Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / spec13.C
blobf2a3a373ed76c57e7525c786057052c606cabb7b
1 // { dg-options "-w" }
3 template <typename T>
4 struct S {
5   int i;
6   template <typename U> void f(U) {}
7 };
9 template<> 
10 template <typename U>
11 void S<int>::f(U) { i; }
13 void f() {
14   S<int> s;
15   s.f<int>(3);