Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / 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;