summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/cpp/33018-byref-2.cpp
blob: 665cc749323353e38afb5304e1dce232c9cc0ec1 (plain)
1
2
3
4
5
6
int & aa(int & x,int & b);   // Sp Before Byref Func, Sp After Byref Func, Sp Before Byref, Sp After Byref
int aa(int & x,int &)     // Sp Before Byref, Sp Before Unnamed Byref, Sp After Byref
{
	b = aa(x,b);
	c = aa(& y,& d);     // Sp Addr
}