re PR c++/79005 (Use of a captured variable within nested generic lambdas provokes internal compiler error.)

2017-10-02  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/79005
	* g++.dg/cpp1y/lambda-generic-79005.C: New.

From-SVN: r253368
This commit is contained in:
Paolo Carlini 2017-10-02 21:44:55 +00:00 committed by Paolo Carlini
parent de87f2d04a
commit 603841eb29
2 changed files with 26 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2017-10-02 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/79005
* g++.dg/cpp1y/lambda-generic-79005.C: New.
2017-10-02 Paul Thomas <pault@gcc.gnu.org>
PR fortran/82312

View File

@ -0,0 +1,21 @@
// PR c++/79005
// { dg-do compile { target c++14 } }
int main()
{
auto glambda = [] (auto a)
{
const int c = a;
auto cglambda = [&] ( auto b )
{
double result;
result = b * a;
result = b * c;
return result;
};
cglambda ( 1 );
a = c;
};
glambda( 1 );
}