summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/31660-issue_1919.cpp
blob: 187065d6c0b17e627e0d6673aba234de668dbb28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
void foo()
{
	int a;
	vector<unsigned> b;
	long c;
	decltype(a) d;
}

void bar()
{
	int a;
	std::vector<unsigned> b;
	long c;
	decltype(a) d;
}