OSDN Git Service

* gcc.dg/20020201-1.c: Use cleanup-coverage_files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp48.C
1 // { dg-do assemble  }
2 // GROUPS passed templates membertemplates
3 struct S
4 {
5   template <class T>
6   void f(T t1, T t = T())
7   {}
8 };
9
10
11 void foo()
12 {
13   S si;
14   si.f(3);
15 }