aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/varmod1.C
blob: d64f04b78859a7451797f73102ee9c56564d6906 (plain)
1
2
3
4
5
6
7
int main(int argc, char** argv) {
  int nx = 2;
  void theerror(double a[][nx+1]); // { dg-message "" }
  double** a;
  theerror(a);
  return 0;
}