summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/30256-func_call.cpp
blob: e3eff88c4ca36c1300c2649ffbe2bfc9343abda6 (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);
}