blob: 5e2d339a8816b9fcb84be4c4688f78baab7c7161 [file] [log] [blame]
John Stiles7253a202021-08-23 09:24:33 -04001// Expect 6 errors
John Stiles80b02af2021-02-12 17:07:51 -05002
3void a[2];
4void[2] b;
5
John Stiles80b02af2021-02-12 17:07:51 -05006void[2] funcF() {}
7void funcG() { void g[2]; }
8void funcH() { void[2] h; }
John Stiles7253a202021-08-23 09:24:33 -04009void funcI() { void[2]; }