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