OSDN Git Service

PR c++/19797
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / debug / debug5.C
1 // { dg-do compile }
2
3 int 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 }