summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00620-indent-assign.c
blob: c01e146aaa0658498cbc5e0ae6ab814b8464fe73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
void foo(void)
{
   int a;

   junk(a = 3);
}

void f()
{
   int x = size_t(1.0) +
           2;
   int y = (size_t(1.0) +
            5);
}