summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/30048-nl_func_def_paren_empty.cpp
blob: 22f3c70051bd0e62480279ad087b930475107e36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
void LocalClass::LocalClass()
{
	int Function(
		)
	{
		return 0;
	}

	int Function(
		)
	{
		return 0;
	}

	int Function()
	{
		return 0;
	}
}