summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/c/02454-nl_return_expr.c
blob: 2e33d2b0d0fbfc089c213fae93eb767e75f75532 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

int foo1(void)
{
    bar();

    return
        (NewClass(1));
}

int foo2(void)
{
    return
        (NewClass(2));
}

int foo3(void)
{
    bar(none);

    // comment
    return
        (3);
}

int foo4(void)
{
    return
        (4);
}