summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/60081-Issue_3546.cpp
blob: 40131205edf5bf1044e107b51128babb062f5a1d (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;
}