c++: Non-type-dependent variadic lambda init-capture [PR94483]
authorPatrick Palka <ppalka@redhat.com>
Thu, 16 Apr 2020 14:28:23 +0000 (10:28 -0400)
committerPatrick Palka <ppalka@redhat.com>
Fri, 17 Apr 2020 18:00:41 +0000 (14:00 -0400)
In this PR, we're ICEing on a use of an 'int... a' template parameter pack as
part of the variadic lambda init-capture [...z=a].

The unexpected thing about this variadic init-capture is that it is not
type-dependent, and so the call to do_auto_deduction from
lambda_capture_field_type actually resolves its type to 'int' instead of exiting
early like it does for a type-dependent variadic initializer.  This later
confuses add_capture which, according to one of its comments, assumes that
'type' is always 'auto' for a variadic init-capture.

The simplest fix (and the approach that this patch takes) seems to be to avoid
doing auto deduction in lambda_capture_field_type when the initializer uses
parameter packs, so that we always return 'auto' even in the non-type-dependent
case.

gcc/cp/ChangeLog:

PR c++/94483
* lambda.c (lambda_capture_field_type): Avoid doing auto deduction if
the explicit initializer has parameter packs.

gcc/testsuite/ChangeLog:

PR c++/94483
* g++.dg/cpp2a/lambda-pack-init5.C: New test.

gcc/cp/ChangeLog
gcc/cp/lambda.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp2a/lambda-pack-init5.C [new file with mode: 0644]

index 465f29090f4c93555d7ba82ff82d394ba30deaa2..b89b6d88fd3bda5886366d5daf489edec8232245 100644 (file)
@@ -1,5 +1,9 @@
 2020-04-17  Patrick Palka  <ppalka@redhat.com>
 
+       PR c++/94483
+       * lambda.c (lambda_capture_field_type): Avoid doing auto deduction if
+       the explicit initializer has parameter packs.
+
        PR c++/88754
        * parser.c (cp_parser_check_template_parameters): Before issuing a hard
        error, first try simulating an error instead.
index 4f39f99756bb00da9782c372b0f35d005532940e..b55c2f85d27eafa9b64d7db494dc847e60d4041b 100644 (file)
@@ -223,7 +223,10 @@ lambda_capture_field_type (tree expr, bool explicit_init_p,
        /* Add the reference now, so deduction doesn't lose
           outermost CV qualifiers of EXPR.  */
        type = build_reference_type (type);
-      type = do_auto_deduction (type, expr, auto_node);
+      if (uses_parameter_packs (expr))
+       /* Stick with 'auto' even if the type could be deduced.  */;
+      else
+       type = do_auto_deduction (type, expr, auto_node);
     }
   else if (!is_this && type_dependent_expression_p (expr))
     {
index b80e7da1c829b91379c2c74609d7730c13ef5760..030550f16619b1112df328628f2e800dde6c0cf4 100644 (file)
@@ -1,5 +1,8 @@
 2020-04-17  Patrick Palka  <ppalka@redhat.com>
 
+       PR c++/94483
+       * g++.dg/cpp2a/lambda-pack-init5.C: New test.
+
        PR c++/88754
        * g++.dg/parse/ambig10.C: New test.
 
diff --git a/gcc/testsuite/g++.dg/cpp2a/lambda-pack-init5.C b/gcc/testsuite/g++.dg/cpp2a/lambda-pack-init5.C
new file mode 100644 (file)
index 0000000..492fc47
--- /dev/null
@@ -0,0 +1,18 @@
+// PR c++/94483
+// { dg-do compile { target c++2a } }
+
+template<int... a> constexpr auto x1
+  = [...z = -a] (auto F) { return F(z...); };
+
+template<const int&... a> constexpr auto x2
+  = [&...z = a] (auto F) { return F(z...); };
+
+template<int... a> constexpr auto x3
+  = [z = -a] (auto F) { return F(z); }; // { dg-error "packs not expanded" }
+
+
+constexpr auto sum = [] (auto... xs) { return (xs + ... + 0); };
+const int y1 = 1, y2 = 2, y3 = 3;
+
+static_assert(x1<1,2,3>(sum) == -6);
+static_assert(x2<y1,y2,y3>(sum) == 6);