From: Patrick Palka Date: Fri, 1 Apr 2022 18:56:20 +0000 (-0400) Subject: c++: deducing from class type of NTTP [PR105110] X-Git-Tag: upstream/12.2.0~731 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=95533fe4f014c10dd18de649927668aba6117daf;p=platform%2Fupstream%2Fgcc.git c++: deducing from class type of NTTP [PR105110] Here when attempting to deduce T in the NTTP type A from the argument type 'const A', we give up due to the const: types ‘A’ and ‘const A’ have incompatible cv-qualifiers But since the type of an NTTP cannot be cv-qualified, it seems natural to ignore cv-qualifiers on the argument type before attempting to unify the two types. PR c++/105110 gcc/cp/ChangeLog: * pt.cc (unify) : Drop cv-quals from the argument type of an NTTP before deducing from it. gcc/testsuite/ChangeLog: * g++.dg/cpp2a/nontype-class52.C: New test. --- diff --git a/gcc/cp/pt.cc b/gcc/cp/pt.cc index bdba5cf..75ed9a3 100644 --- a/gcc/cp/pt.cc +++ b/gcc/cp/pt.cc @@ -24266,8 +24266,9 @@ unify (tree tparms, tree targs, tree parm, tree arg, int strict, && !(strict & UNIFY_ALLOW_INTEGER) && TEMPLATE_PARM_LEVEL (parm) <= TMPL_ARGS_DEPTH (targs)) { - /* Deduce it from the non-type argument. */ - tree atype = TREE_TYPE (arg); + /* Deduce it from the non-type argument. As above, ignore + top-level quals here too. */ + tree atype = cv_unqualified (TREE_TYPE (arg)); RECUR_AND_CHECK_FAILURE (tparms, targs, tparm, atype, UNIFY_ALLOW_NONE, explain_p); diff --git a/gcc/testsuite/g++.dg/cpp2a/nontype-class52.C b/gcc/testsuite/g++.dg/cpp2a/nontype-class52.C new file mode 100644 index 0000000..5616337 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp2a/nontype-class52.C @@ -0,0 +1,13 @@ +// PR c++/105110 +// { dg-do compile { target c++20 } } + +template struct A { }; + +template struct B { }; + +template V> void f(B); + +int main() { + constexpr A a; + f(B{}); +}