summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/cpp/byref-3.cpp
blob: 28da2d7428baf17adccfa88743b45d819865fa54 (plain)
1
2
3
4
5
6
7
8
9
10
11
void test(void) {
	auto const ic = 1;
	auto iv = 1;
	auto const & ric = ic;
	auto & riv = iv;
	const auto & ric2 = ic;
	if (auto const & r(ric); r > 0) {
	}
	if (auto & r(riv); r > 0) {
	}
}