]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/indent/tests/elsecomment.0
MFC r332399:
[FreeBSD/FreeBSD.git] / usr.bin / indent / tests / elsecomment.0
1 /* $FreeBSD$ */
2 /* See r303484 and r309342 */
3 void 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 }