mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 22:11:30 +08:00
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:
parent
de87f2d04a
commit
603841eb29
@ -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
|
||||
|
21
gcc/testsuite/g++.dg/cpp1y/lambda-generic-79005.C
Normal file
21
gcc/testsuite/g++.dg/cpp1y/lambda-generic-79005.C
Normal 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 );
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user