summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/34512-byref-2.cpp
blob: 099e3c2b5e5baa3565684f689c66a71993407535 (plain)
1
2
3
4
5
6
7
8
int&aa(int&x,int&b);
// sp_before_byref_func, sp_after_byref_func, sp_before_byref, sp_after_byref, sp_before_byref, sp_after_byref
int aa(int&x,int&)
// sp_before_byref, sp_after_byref, sp_before_unnamed_byref
{
	b = aa(x,b);
	c = aa(&y,&d);         // sp_addr
}