aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/debug/debug7.C
blob: 8731cf81da7b1661676d11238813512be5c14a5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-do compile }
// { dg-prune-output "note" }

void f (int);

int
main() {

  int a = 4;
  int b = 5;
  int (*x)[b] = new int[a][b]; // { dg-error "" }

  x[2][1] = 7;

  for (int i = 0; i < a; ++i)
    for (int j = 0; j < b; ++j)
      f (x[i][j]);
  delete [] x;
}