/* XXX: This is necessary to recover the yacc parser. */
int recover_from_rbrace;
/*
* Before func.c 1.110 from 2021-06-19, lint ran into this:
* assertion "cstmt->c_kind == kind" failed in end_control_statement
*/
void
function(void)
{
if (0)
/* expect+1: warning: 'empty' statement not reached [193] */
;
/* expect+1: error: syntax error ')' [249] */
);
}
/* XXX: It is unexpected that this error is not detected. */
"This syntax error is not detected.";
/* XXX: This is necessary to recover the yacc parser. */
double recover_from_rparen;
/* Ensure that the declaration after the syntax error is processed. */
double *
access_declaration_after_syntax_error(void)
{
return &recover_from_rparen;
}