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