arocc
arocc copied to clipboard
Missing error for goto into statement expression
void foo(void) {
int b = ({
foo:
goto foo; // ok
1;
});
goto foo; // not ok
}