summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/c/02451-nl_return_expr.c
blob: bf8621d5178c7328eaaf9388a40656f9a468191b (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

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