/*
* Tests for the parser symbol psym_0 (formerly named psym_semicolon), which
* pushes a new statement on the stack.
*
* This token is never stored on the stack itself.
*/
//indent input
void func(void) { stmt(); }
//indent end
//indent run
void
func(void)
{
stmt();
}
//indent end
//indent run -npsl
void func(void)
{
stmt();
}
//indent end
//indent run -nfbs
void
func(void) {
stmt();
}
//indent end