summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/c/align_trailing_do_cmt.c
blob: 372da441e301bb3ffe1dd37f67a11404890be4ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
int foo(void) {
    int r;
    do // this comment should be aligned with the one below
    {
        r = bar();
    }
    while (r);

    do            // this comment should be aligned with the one above
    {
        r = baz();
    }
    while (r);
}