http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60992
--- Comment #2 from Jason Merrill <jason at gcc dot gnu.org> --- Author: jason Date: Fri May 2 19:47:40 2014 New Revision: 210017 URL: http://gcc.gnu.org/viewcvs?rev=210017&root=gcc&view=rev Log: PR c++/60992 * lambda.c (lambda_capture_field_type): Wrap anything dependent other than 'this'. (add_capture): Check for VLA before calling it. * semantics.c (is_this_parameter): Accept any 'this' parameter, not just the current one. Make non-static. * cp-tree.h: Declare it. * pt.c (tsubst_copy) [VAR_DECL]: Also build a new VAR_DECL if the operand was static or constant. Added: trunk/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-const3.C Modified: trunk/gcc/cp/ChangeLog trunk/gcc/cp/cp-tree.h trunk/gcc/cp/lambda.c trunk/gcc/cp/pt.c trunk/gcc/cp/semantics.c