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