[Bug c++/70555] ICE in expand_expr_real_1 accessing a multi-dimensional VLA via lambda-capture

msebor at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Mon Feb 13 22:19:00 GMT 2017


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70555

--- Comment #5 from Martin Sebor <msebor at gcc dot gnu.org> ---
A somewhat simplified test case:

void f (int n)
{
  int a[n][n];

  [&a]() { }();
}


More information about the Gcc-bugs mailing list