summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/cpp/byref-2.cpp
blob: 0ef61cde2cc3c47683fee119c8637b1ba95bc48f (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
}