re PR c++/56135 ([c++11] this incorrectly captured as null in template member function)
authorJason Merrill <jason@redhat.com>
Wed, 13 Feb 2013 17:56:05 +0000 (12:56 -0500)
committerJason Merrill <jason@gcc.gnu.org>
Wed, 13 Feb 2013 17:56:05 +0000 (12:56 -0500)
PR c++/56135
* pt.c (tsubst_copy_and_build): Don't forget any new
captures that arose from use of dependent names.

From-SVN: r196021

gcc/cp/ChangeLog
gcc/cp/pt.c
gcc/testsuite/g++.dg/cpp0x/lambda/lambda-this8.C [new file with mode: 0644]

index 442b369942d2299761ddf55024e5b8ba7ae759a4..e3b927bc9db41f40b6ac0386510e83e6c91f6e09 100644 (file)
@@ -1,3 +1,9 @@
+2013-02-13  Jason Merrill  <jason@redhat.com>
+
+       PR c++/56135
+       * pt.c (tsubst_copy_and_build): Don't forget any new
+       captures that arose from use of dependent names.
+
 2013-02-13  Jakub Jelinek  <jakub@redhat.com>
 
        PR c++/56302
index a3359ada7438b9fc9b2736b59f71d9d1c09efe81..2aadd4d0bf410766e156e10fbb0ea527327dd7f2 100644 (file)
@@ -14457,9 +14457,11 @@ tsubst_copy_and_build (tree t,
        complete_type (type);
 
        /* The capture list refers to closure members, so this needs to
-          wait until after we finish instantiating the type.  */
+          wait until after we finish instantiating the type.  Also keep
+          any captures that may have been added during instantiation.  */
        LAMBDA_EXPR_CAPTURE_LIST (r)
-         = RECUR (LAMBDA_EXPR_CAPTURE_LIST (t));
+         = chainon (RECUR (LAMBDA_EXPR_CAPTURE_LIST (t)),
+                    LAMBDA_EXPR_CAPTURE_LIST (r));
        LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
 
        RETURN (build_lambda_object (r));
diff --git a/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-this8.C b/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-this8.C
new file mode 100644 (file)
index 0000000..9309a44
--- /dev/null
@@ -0,0 +1,39 @@
+// PR c++/56135
+// { dg-do run { target c++11 } }
+
+#include <functional>
+
+extern "C" void abort() throw();
+
+struct test {
+  template<typename T>
+  std::function<void()> broken(int x) {
+    return [=] { +x; print<T>(); };
+  }
+
+  std::function<void()> works0() {
+    return [=] { print<int>(); };
+  }
+
+  template<typename T>
+  std::function<void()> works1() {
+    return [=] { print<int>(); };
+  }
+
+  template<typename T>
+  std::function<void()> works2() {
+    return [=] { this->print<T>(); };
+  }
+
+  template<typename T>
+  void print() { if (this == NULL) abort (); }
+};
+
+int main(void) {
+  test().broken<int>(1)();
+  test().works0()();
+  test().works1<int>()();
+  test().works2<int>()();
+
+  return 0;
+}