@@ -24568,7 +24568,8 @@ unify (tree tparms, tree targs, tree parm, tree arg, int strict,
even if ARG == PARM, since we won't record unifications for the
template parameters. We might need them if we're trying to
figure out which of two things is more specialized. */
- if (arg == parm && !uses_template_parms (parm))
+ if (arg == parm
+ && (DECL_P (parm) || !uses_template_parms (parm)))
return unify_success (explain_p);
/* Handle init lists early, so the rest of the function can assume
@@ -25286,13 +25287,6 @@ unify (tree tparms, tree targs, tree parm, tree arg, int strict,
return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
strict, explain_p);
- case CONST_DECL:
- if (DECL_TEMPLATE_PARM_P (parm))
- return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
- if (arg != scalar_constant_value (parm))
- return unify_template_argument_mismatch (explain_p, parm, arg);
- return unify_success (explain_p);
-
case FIELD_DECL:
case TEMPLATE_DECL:
/* Matched cases are handled by the ARG == PARM test above. */
new file mode 100644
@@ -0,0 +1,17 @@
+// PR c++/108347
+
+template<class T>
+struct A {
+ template<class U> struct C { };
+
+ template<template<class> class TT, class U>
+ struct B;
+
+ template<class U>
+ struct B<C, U*>;
+
+ template<class U>
+ struct B<C, const U*> { };
+};
+
+A<int>::B<A<int>::C, const int*> b;