xxxxxxxxxx
struct Move(T) {
private:
import std.algorithm : move;
T storage;
public:
this(ref return scope Move rhs) {}
}
struct A {
@disable this(this);
void main() {
Move!A x;
Move!A y = x;