summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/regress/debug-debug7.C
blob: ea8f1eb2e6c119b5f972307d3914985b2673ff46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-do compile }
// { dg-options -std=c++0x }

void f (int);

int
main() {

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

  x[2][1] = 7;

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