Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / unify1.C
blob2413ab0009c3512829a8ae5787e604a0a7f10cb6
1 // { dg-do assemble  }
2 // Tests non-unification of parms that don't use template parms.
4 enum kind {a, b};
6 class C { public: C () {} };
8 template<class P>
9 void f (P c, kind k) {}
11 template<class P>
12 void f (P c, P d, kind k) {}
14 template void f (C c, C, kind k);