xref: /aosp_15_r20/external/skia/resources/sksl/errors/VoidInStruct.rts (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
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