blob: 8d2e0624d5e7deedebaf8c5c57f3d7409a5f6f96 [file] [log] [blame]
// Tests non-unification of parms that don't use template parms.
// Build don't link:
enum kind {a, b};
class C { public: C () {} };
template<class P>
void f (P c, kind k) {}
template<class P>
void f (P c, P d, kind k) {}
template void f (C c, C, kind k);