xxxxxxxxxx
@safe void f(scope ref int a, scope ref int b)
{
a=1;
assert(b==1);
}
@safe void main()
int i = 0;
f(i, i);
assert(i==1);