aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/p4619.C
blob: 8b772581c667e1980a6de9bab0306f732f540627 (plain)
1
2
3
4
5
6
7
8
9
10
// Build don't link:
// prms-id: 4619

int main() {
  int i = 3;
  int (*p)[10] = new int [20][10];
  int (*p1)[5][7][13][10] = new int [i][5][7][13][10];
  delete [] p1;
  delete [] p;
}