summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/c/02452-nl_return_expr.c
blob: 4dc23adfce82b81fb1d38743b7864a3ccc05c474 (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;
}