xref: /freebsd/usr.bin/indent/tests/elsecomment.0.stdout (revision 264104f26834fdb27974e0c5fdedf8f2f5a90383)
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