summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/input/cpp/bug_i_409.cpp
blob: b3b514882b5046c6c19a639ef63755abbb110899 (plain)
1
2
3
4
5
6
7
8
9
10
11
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++);