xxxxxxxxxx
import std.stdio;
ref T byRef(T)(T value) {
static T _val = void;
_val = value;
return _val;
}
void foo(ref int a, ref int b) {
writeln("A = ", a, " B = ", b);
void main() {
foo(42.byRef, 23.byRef);