summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/cpp/func_call.cpp
blob: 6467560f0dfa283ce38fd6732fc81d271ff7bfdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
void f()
{
    auto x = func1(
        arg,
        arg);
}

void f()
{
    return func2(
        arg,
        arg);
}