PR c++/65695
[official-gcc.git] / gcc / testsuite / g++.dg / debug / debug5.C
blob8dffa94874e03609abf539b8bfc5a8f4b495f426
1 // { dg-do compile }
3 int foo()
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];