summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/cpp/34192-i1207.cpp
blob: e02da8c903448e4b79c2aff1bc50c533b6cd9814 (plain)
1
2
3
4
5
6
7
8
9
10
#include <vector>
std::vector<int> f()
{
	return std::vector<int>{1};
}

int main()
{
	return f()[0];
}