android13/external/skia/resources/sksl/errors/VoidVariable.rts

12 lines
211 B
Plaintext

// Expect 3 errors
void func();
void a;
void b = func();
/*%%*
variables of type 'void' are not allowed
variables of type 'void' are not allowed
global variable initializer must be a constant expression
*%%*/