summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/34116-issue_2000.cpp
blob: f4f2c2bfbc26a26a5e5e30f395ac330b39a28a99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
int bar;

// blank line should be inserted before this comment
vector<int> foo()
{
	return {};
}

// blank line should be inserted before this comment, not after
template<>
volatile
int x::
foo()
{
	return 0;
}