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