2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / defarg3.C
blobfeb4eaeb21c32c69751e1add79b26f37a6cc84ff
1 // { dg-do assemble  }
3 template <class T> 
4 struct S;
6 template <class T = int>
7 struct S {};
9 template <class T> 
10 struct S;
12 void f()
14   S<> s;