unplugged-system/external/skia/resources/sksl/errors/VoidInStruct.rts

16 lines
268 B
Plaintext
Raw Normal View History

// Expect 4 errors
struct S {
void a;
void b[2];
void[2] c;
void[2] d[2];
};
/*%%*
type 'void' may not be used in an array
type 'void' may not be used in an array
type 'void' may not be used in an array
type 'void' is not permitted in a struct
*%%*/