xxxxxxxxxx
import std.stdio;
struct Ref(T) {
T value;
}
auto byRef(T)(T value) {
return Ref!T(value);
}
void foo(ref int a) {
writeln("A = ", a);
}
struct A {
int id;
this(int id) {
this.id = id;
writeln("CTor ", this.id);
}
this(this) {
writeln("Copy ", this.id);
}
~this() {
writeln("DTor ", this.id);
}
}
void bar(ref const A a) {
writeln("A.id = ", a.id);
}
void foo(ref int a, ref int b) {
writeln("A = ", a, " B = ", b);
}
void main() {
foo(42.byRef.value);
foo(23.byRef.value);
bar(A(1337).byRef.value);
foo(42.byRef.value, 23.byRef.value);
}