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