xxxxxxxxxx
import std.stdio;
struct S
{
int i = 42;
alias i this;
}
void main()
S s;
int i = s;
writeln("Init: ", i.init, " Value: ", i);