1 2 3 4 5 6 7 8 9 10 11
// Build don't link: // Special g++ Options: -gdwarf-2 -O0 int foo() { int a = 1; int b = 1; int e[a][b]; e[0][0] = 0; return e[a-1][b-1]; }