summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/c/nl_return_expr.c
blob: e917e39904124f4b454b5979868eb87456af6460 (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

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