Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.pt / memtemp61.C
blob2e65e817b1de81d7d086151e785ce91c247ded66
1 // { dg-do link  }
2 // GROUPS passed membertemplates
3 struct S
5   template <class T>
6   void foo(T t);
7 };
10 template <>
11 void S::foo(int i)
16 int main()
18   S s;
19   s.foo(3);