OSDN Git Service

* gcc.dg/20020201-1.c: Use cleanup-coverage_files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp62.C
1 // { dg-do link  }
2 // GROUPS passed membertemplates
3 struct S
4 {
5   template <class T>
6   void foo(T t);
7 };
8
9
10 template <>
11 void S::foo<int>(int i)
12 {
13 }
14
15
16 int main()
17 {
18   S s;
19   s.foo(3);
20 }