]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
c++: lambda capture of array with deduced bounds [PR106567]
authorJason Merrill <jason@redhat.com>
Mon, 12 Sep 2022 16:59:46 +0000 (12:59 -0400)
committerJason Merrill <jason@redhat.com>
Mon, 12 Sep 2022 16:59:46 +0000 (12:59 -0400)
We can't use the type of an array variable directly if we haven't deduced
its length yet.

PR c++/106567

gcc/cp/ChangeLog:

* lambda.cc (type_deducible_expression_p): Check
array_of_unknown_bound_p.

gcc/testsuite/ChangeLog:

* g++.dg/cpp0x/lambda/lambda-array4.C: New test.

gcc/cp/lambda.cc
gcc/testsuite/g++.dg/cpp0x/lambda/lambda-array4.C [new file with mode: 0644]

index 3fb98a9805787747635f9aa05ce75971bee5e026..3ee1fe9489e42032189b1a5dc1a1b581cf545bf8 100644 (file)
@@ -198,6 +198,7 @@ type_deducible_expression_p (tree expr)
   tree t = non_reference (TREE_TYPE (expr));
   return (t && TREE_CODE (t) != TYPE_PACK_EXPANSION
          && !WILDCARD_TYPE_P (t) && !LAMBDA_TYPE_P (t)
+         && !array_of_unknown_bound_p (t)
          && !type_uses_auto (t));
 }
 
diff --git a/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-array4.C b/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-array4.C
new file mode 100644 (file)
index 0000000..94ec7f8
--- /dev/null
@@ -0,0 +1,29 @@
+// PR c++/106567
+// { dg-do compile { target c++11 } }
+
+template <class V>
+void urgh()
+{
+    const V x[] = {V(0), V(1), V(2), V(0)};
+
+    [&]() {
+        for (auto& v : x) {}
+    }();
+}
+
+void no_urgh()
+{
+    using V = int;
+
+    const V x[] = {V(0), V(1), V(2), V(0)};
+
+    [&]() {
+        for (auto& v : x) {}
+    }();
+}
+
+int main()
+{
+    no_urgh();
+    urgh<int>();
+}