(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
debug/
debug7.C
// { 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;
}