xxxxxxxxxx
struct S
{
this(int some_a, int some_b)
a = some_a;
b = some_b;
}
int a;
const int b;
void main()
auto s = S(1, 2);
s = S(3, 4);