summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/cpp/34206-for_loop_head.cpp
blob: 6cea550d7b468d64d7a4cc663cc6311ed70f1152 (plain)
1
2
3
4
5
6
7
8
9
10
for(int i = 1,
    j = 2,
    k = 3,
   ; (i != 1
      && j != 2
      && k != 2)
   ; i++, j++, k++ )
{
}