diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 7ae4128a3a87..a4b132d69613 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2020-03-24 Jason Merrill + + * pt.c (any_template_parm_r): Look into the type of a non-type + template parm. + 2020-03-24 Jason Merrill * cp-tree.h (cp_expr): When constructing from an expr and a diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index 03a8dfbd37ca..3c96eeca1912 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -10431,6 +10431,7 @@ any_template_parm_r (tree t, void *data) WALK_SUBTREE (TREE_OPERAND (t, 1)); break; + case TEMPLATE_PARM_INDEX: case PARM_DECL: /* A parameter or constraint variable may also depend on a template parameter without explicitly naming it. */ diff --git a/gcc/testsuite/g++.dg/cpp2a/concepts-nonbool2.C b/gcc/testsuite/g++.dg/cpp2a/concepts-nonbool2.C new file mode 100644 index 000000000000..ebede46b3687 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp2a/concepts-nonbool2.C @@ -0,0 +1,11 @@ +// { dg-do compile { target concepts } } + +template +concept C = requires { + requires x; // { dg-error "bool" } + }; + +int main() { + C; + return 0; +}