blob: e59de36fa417bdb2c0fb97502525312e917556d4 [file] [log] [blame]
// PRMS Id: 6036
extern int a;
int main() {
switch (a) {
case 1:
int v2 = 3; // ERROR - referenced below
case 2: // ERROR - jumping past initializer
if (v2 == 7)
;
}
return 0;
}