Merge reload-branch up to revision 101000
[official-gcc.git] / gcc / testsuite / g++.dg / parse / varmod1.C
blobbf64507ae9bdafc4e804d7bcd0c5e93c360c110b
1 int main(int argc, char** argv) {
2   int nx = 2;
3   void theerror(double a[][nx+1]); // { dg-error "" }
4   double** a;
5   theerror(a); // { dg-error "" }
6   return 0;