xxxxxxxxxx
import std.stdio;
struct T {
~this() { writeln("DTOR"); }
this(ref return scope T self) { writeln("COPYCTOR"); }
}
void main() {
T a;
T b;
a.__ctor(b);