xxxxxxxxxx
import std.stdio;
struct INT1 {
int a = 1;
alias a this;
}
struct A {
INT1 a;
void initialize() {
a = typeof(a).init;
}
}
void main() {
A a;
a.initialize();
writeln(a.a);
}