2016-12-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
[official-gcc.git] / gcc / testsuite / g++.dg / parse / varmod1.C
blobd64f04b78859a7451797f73102ee9c56564d6906
1 int main(int argc, char** argv) {
2   int nx = 2;
3   void theerror(double a[][nx+1]); // { dg-message "" }
4   double** a;
5   theerror(a);
6   return 0;