summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/c/00631-nl_assign.c
blob: 7319d498f9e7dc74271f13b05fe85fb542a9df2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

void foo()
{
    some.really_long.variable_name
        = another.big.one[55]
          + something_else;

    some.really_long.variable_name
        = another.big.one[55]
          + something_else;

    some.really_long.variable_name = another.big.one[55]
                                     + something_else;

    a_really_long_assignment_to_test
        = line_breaks_around_assign_and_arith;

    a_really_long_assignment_to_test = line_breaks_around
                                       + assign_and_arith;

}