summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/cpp/align_fcall.cpp
blob: c27ed9d198386ff29574023473a96a3f679fa373 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
void foo()
{
abc(1,2,3);
abc(10,20,30);
abc(100,200,300);
cab(3,2,1,0);
brat("foo",2000,3000);
brat("question",2,-42);
brat("a",-22, 1);
while (1)
{
brat("foo",2000,3000);
brat("question",2,-42);
brat("a",-22, 1);
}
brat("foo",2000,3000);
brat("a",-22, 1);
}