summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/c/10061-Issue_3556.c
blob: 423e07f0214a2baa7685a5e5b0c8152e379fa74e (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
29
30
31
32
33
int main(void)
{
    int a
   = -1;
    int b
     = 0;
    int c
      = 1;
    a
   = -1;
    b
     = 0;
    c
      = 1;
    if (a
   = -1)
    {
        return a
       = -1;
    }
    if (b
     = 0)
    {
        return b
         = 0;
    }
    if (c
      = 1)
    {
        return c
          = 1;
    }
}