summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/cpp/Issue_3546.cpp
blob: 617e849f6b824591db48c3b1cf1338a256bc95ab (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
#include <stdio.h>

class
      alignas(32)
                  Foobar;

int main()
{
    typedef
            int
                int32;
    int foo,
             bar,
                  baz;
    foo = 5
            + 6
                + 7;
    if (printf("%d %d",
                        5
                          + 6,
                               7)
                                  < 0)
    {
        return 1;
    }

    return 0;
}