blob: bf64507ae9bdafc4e804d7bcd0c5e93c360c110b [file] [log] [blame]
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;
}