xxxxxxxxxx
import std.stdio;
import std.algorithm;
struct S {
int x;
this(); // Disables default construction
this(this); // Disable copying
this(int v) { x = v; }
}
struct T {
float y;
S s;
this(); // Disables default construction
this(this); // Disable copying
this(float v) {
y = v;
s = S(cast(int)v);
}
}
void main() {
auto s = T(3);
}