1// Expect 4 errors
2
3struct S {
4 void a;
5 void b[2];
6 void[2] c;
7 void[2] d[2];
8};
9
10/*%%*
11type 'void' may not be used in an array
12type 'void' may not be used in an array
13type 'void' may not be used in an array
14type 'void' is not permitted in a struct
15*%%*/
16