summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/10020-single_line_comment_after.c
blob: 527b3e8000eac78a761de73557e87364bf67056c (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>

int main(void)
{
    printf("Hello "); // This comment is short.

    printf("world!\n");
        // This comment is long, so I put it on the next line and indented it.

    return 0;
}