xxxxxxxxxx
struct Foo {
ubyte[1024] data;
}
void foo(T)(auto ref T t) {
import std.functional: forward;
bar(forward!t);
}
Foo gfoo;
void bar(T)(auto ref T t) {
import std.algorithm.mutation : move;
move(t, gfoo);
}
void main() {
foo(Foo(10));
}