find_template_parameters needs to find the mention of T in the lambda.
Fixing that leaves this as a hard error, which may be surprising but is
consistent with lambdas in other SFINAE contexts like template argument
deduction.
gcc/cp/ChangeLog
2020-02-15 Jason Merrill <jason@redhat.com>
PR c++/92556
* pt.c (any_template_parm_r): Look into lambda body.
2020-02-15 Jason Merrill <jason@redhat.com>
+ PR c++/92556
+ * pt.c (any_template_parm_r): Look into lambda body.
+
PR c++/92583
* pt.c (any_template_parm_r): Remove CONSTRUCTOR handling.
}
break;
+ case LAMBDA_EXPR:
+ {
+ /* Look in the parms and body. */
+ tree fn = lambda_function (t);
+ WALK_SUBTREE (TREE_TYPE (fn));
+ WALK_SUBTREE (DECL_SAVED_TREE (fn));
+ }
+ break;
+
default:
break;
}
--- /dev/null
+// PR c++/92556
+// { dg-do compile { target c++2a } }
+
+// Having this as a hard error is consistent with template argument deduction;
+// it's an open core issue (jason 2020-02-14).
+template <class T> concept has_value
+ = requires { []{T::value;}; }; // { dg-error "" }
+template <has_value T> void f() { }
+template <class T> void f() { }
+void q() { f<int>(); }