1// { dg-do compile }
2
3int foo()
4{
5  int a = 1;
6  int b = 1;
7  int e[a][b];
8  e[0][0] = 0;
9  return e[a-1][b-1];
10}
11