/cp
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / vla7.C
blobafa5fac508d1839c3da42d2439eadc34dcc8a0f6
1 // PR c++/55520
2 // { dg-options "-Wno-vla" }
3 // { dg-require-effective-target c++11 }
5 int main(int argc, char** argv)
7   int x[1][argc];
9   [&x](int i) {                 // { dg-prune-output "sorry" }
10     x[0][i] = 0;                // { dg-prune-output "not captured" }
11   }(5);