blob: 91498c4589a9fe753c01b8c5223f43fb79b5d271 [file] [log] [blame]
// PR c++/84429
// { dg-do compile { target c++11 } }
// { dg-options "" }
void foo(int i)
{
char x[i];
[&]{ [&]{ return x; }; };
}