blob: fcd4290c57053ca99123ba8e10b44546e5b752ed [file] [log] [blame]
// Expect 3 errors
void func();
void a;
void b = func();
int c;
void m() {
// Attempts to assign into a void variable via the switch-hoisting rewrite.
switch (c) {
case 1: void c = a;
}
}
/*%%*
variables of type 'void' are not allowed
variables of type 'void' are not allowed
unknown identifier 'a'
variables of type 'void' are not allowed
*%%*/