xref: /freebsd/usr.bin/indent/tests/elsecomment.0.stdout (revision 99429157e8615dc3b7f11afbe3ed92de7476a5db)
1/* $FreeBSD$ */
2/* See r303484 and r309342 */
3void
4t(void)
5{
6	if (0)
7	{
8
9	}			/* Old indent would remove the following
10				 * blank line */
11
12	/*
13	 * test
14	 */
15
16	if (1)
17		;
18	else			/* Old indent would get very confused here */
19	{
20
21	}
22}
23