What would this do? struct SomeStruct { this(int i = 10) { this.i = i; } this(void) { this.i = 20; } int i; } auto s = SomeStruct();