xxxxxxxxxx
import std.stdio;
struct S
{
this(this) { writeln("S.postblit"); }
}
struct T
S s;
this(this) { writeln("T.postblit"); }
void main()
T t, t2;
t2 = t;