c++: pack in requires-expr parm list [PR107417]
authorPatrick Palka <ppalka@redhat.com>
Sun, 4 Dec 2022 15:47:24 +0000 (10:47 -0500)
committerPatrick Palka <ppalka@redhat.com>
Sun, 4 Dec 2022 15:47:24 +0000 (10:47 -0500)
commit079add3ad39d6620d34665dd9c26c21951eb657c
tree9e4ac7a35e7dea9e6a58a4c1f4e14130d09aad19
parenta044c9d25972b22c6b4c8ec27f2de5fd622573cc
c++: pack in requires-expr parm list [PR107417]

Here find_parameter_packs_r isn't detecting the pack T inside the
requires-expr's parameter list ultimately because cp_walk_trees
deliberately avoids walking the list so as to avoid false positives in
the unexpanded pack checker.

But it should still be fine to walk the TREE_TYPE of each parameter,
which we already need to do from for_each_template_parm_r, and is
sufficient to fix the testcase.

PR c++/107417

gcc/cp/ChangeLog:

* pt.cc (for_each_template_parm_r) <case REQUIRES_EXPR>: Move
walking of the TREE_TYPE of each parameter to ...
* tree.cc (cp_walk_subtrees) <case REQUIRES_EXPR>: ... here.

gcc/testsuite/ChangeLog:

* g++.dg/cpp2a/concepts-requires33.C: New test.
gcc/cp/pt.cc
gcc/cp/tree.cc
gcc/testsuite/g++.dg/cpp2a/concepts-requires33.C [new file with mode: 0644]