summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/c/02453-nl_return_expr.c
blob: c917fb17a8a263d8bbf92f36f592df9097f9b2d3 (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

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;
}