summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/33046-bug_i_409.cpp
blob: 6946a562f82d012cf39d658620b6773efc614a5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
if(X == Y)
    X = Z;
if(Y == Z)
    Y = X;

for (i=0; i<5; i++)
    foo(i);
for (i=0; i<5; i++)
    foo(i);

while (i<5)
    foo(i++);
while (i<5)
    foo(i++);