summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/cpp/Issue_4239.cpp
blob: 5bcbfe77f849c2e3e05edacc890f3feb6a538c5e (plain)
1
2
3
4
5
6
7
8
9
10
void f()
{
    int x;
    int y;
    y = x;
    if ((y = x) != 0)
        for (;;)
            if (x)
                return;
}