OSDN Git Service

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