blob: a5953e73bc937fc029f1b72a20c7bca292eaa852 [file] [log] [blame]
int foo(int p)
{
goto inside;
if (0 && ({
inside:
return 1;
2;
}))
return 3;
return 4;
}
int bar(int p)
{
if (0 && ({
inside:
return 1;
2;
}))
return 3;
goto inside;
}
/*
* check-name: goto-stmt-expr-short-circuit
* check-command: test-linearize -Wno-decl $file
*
* check-error-ignore
* check-output-ignore
* check-output-excludes: END
*/