]> gcc.gnu.org Git - gcc.git/commit
c++: constraint rewriting during ttp coercion [PR111485]
authorPatrick Palka <ppalka@redhat.com>
Fri, 22 Sep 2023 10:25:49 +0000 (06:25 -0400)
committerPatrick Palka <ppalka@redhat.com>
Sun, 24 Sep 2023 18:39:46 +0000 (14:39 -0400)
commit59f5786c20a42be13ac6fec567ffe840045012ad
tree66a980dcf48ac227ddb4d927f238b6dbd4ec1429
parentb9e02590f7d35f1f8e8e95ab1f2e30f24113f551
c++: constraint rewriting during ttp coercion [PR111485]

In order to compare the constraints of a ttp with that of its argument,
we rewrite the ttp's constraints in terms of the argument template's
template parameters.  The substitution to achieve this currently uses a
single level of template arguments, but that never does the right thing
because a ttp's template parameters always have level >= 2.  This patch
fixes this by including the outer template arguments in the substitution,
which ought to match the depth of the ttp.

The second testcase demonstrates it's better to substitute the concrete
outer template arguments instead of generic ones since a ttp's constraints
could depend on outer parameters.

PR c++/111485

gcc/cp/ChangeLog:

* pt.cc (is_compatible_template_arg): New parameter 'args'.
Add the outer template arguments 'args' to 'new_args'.
(convert_template_argument): Pass 'args' to
is_compatible_template_arg.

gcc/testsuite/ChangeLog:

* g++.dg/cpp2a/concepts-ttp5.C: New test.
* g++.dg/cpp2a/concepts-ttp6.C: New test.

(cherry picked from commit 6f902a42b0afe3f3145bcb864695fc290b5acc3e)
gcc/cp/pt.cc
gcc/testsuite/g++.dg/cpp2a/concepts-ttp5.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp2a/concepts-ttp6.C [new file with mode: 0644]
This page took 0.065812 seconds and 6 git commands to generate.