alias this and initialisation

Adam D. Ruppe destructionator at gmail.com
Mon May 25 12:31:22 UTC 2020


On Monday, 25 May 2020 at 01:35:47 UTC, Danni Coy wrote:
>     s = 8; // this works
>     S s = 8 // but this does not?
> }

alias this only applies if you already have an object. 
Construction is too soon.

You can add a constructor to make that work though.


More information about the Digitalmars-d-learn mailing list