<div dir="ltr"><div dir="ltr">On Sat, Oct 3, 2020 at 4:45 PM Steven Schveighoffer via Digitalmars-d-learn <<a href="mailto:digitalmars-d-learn@puremagic.com">digitalmars-d-learn@puremagic.com</a>> wrote:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On 10/3/20 6:52 AM, claptrap wrote:<br>
> On Saturday, 3 October 2020 at 00:15:02 UTC, Steven Schveighoffer wrote:<br>
>> On 10/2/20 7:28 PM, claptrap wrote:<br>
>><br>
>>> Why would putting in the writeln cause it to fail? Is it maybe trying <br>
>>> to create the foo at compile time?<br>
>>><br>
>><br>
>> Yes, it is. Any static initialization of static variables happens at <br>
>> compile-time.<br>
>><br>
>> <a href="https://dlang.org/spec/declaration.html#global_static_init" rel="noreferrer" target="_blank">https://dlang.org/spec/declaration.html#global_static_init</a><br>
>><br>
> <br>
> Ah.. ok, any idea why this works?<br>
> <br>
> Foo foo = [300,300];<br>
<br>
Yeah, it's calling the constructor. I agree with Adam, there's nothing <br>
in the spec that talks about this that I can find.<br>
<br>
-Steve<br></blockquote><div><br></div><div>I would say it is here you just need to read it carefully:</div><div><br></div><div><a href="https://dlang.org/spec/struct.html#static_struct_init">https://dlang.org/spec/struct.html#static_struct_init</a></div><div><br></div><div> </div></div></div>