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