public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-2628] c++: lambda capture of array with deduced bounds [PR106567]
@ 2022-09-12 17:50 Jason Merrill
  0 siblings, 0 replies; only message in thread
From: Jason Merrill @ 2022-09-12 17:50 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:7c989a8ed47228bdd494a2f0d1f6fdd325f953d7

commit r13-2628-g7c989a8ed47228bdd494a2f0d1f6fdd325f953d7
Author: Jason Merrill <jason@redhat.com>
Date:   Mon Sep 12 12:59:46 2022 -0400

    c++: lambda capture of array with deduced bounds [PR106567]
    
    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.

Diff:
---
 gcc/cp/lambda.cc                                  |  1 +
 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-array4.C | 29 +++++++++++++++++++++++
 2 files changed, 30 insertions(+)

diff --git a/gcc/cp/lambda.cc b/gcc/cp/lambda.cc
index 3fb98a98057..3ee1fe9489e 100644
--- a/gcc/cp/lambda.cc
+++ b/gcc/cp/lambda.cc
@@ -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
index 00000000000..94ec7f8457e
--- /dev/null
+++ b/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-array4.C
@@ -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>();
+}

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-09-12 17:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-12 17:50 [gcc r13-2628] c++: lambda capture of array with deduced bounds [PR106567] Jason Merrill

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).