You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
168 B

// Expect 7 errors
void a[2];
void[2] b;
void funcD(void d[2]) {}
void funcE(void[2] e) {}
void[2] funcF() {}
void funcG() { void g[2]; }
void funcH() { void[2] h; }