First Beta 2.106.0

Andrej Mitrovic andrej.mitrovich at gmail.com
Thu Nov 2 02:07:13 UTC 2023


On Thursday, 2 November 2023 at 00:57:23 UTC, Iain Buclaw wrote:
> Glad to announce the first beta for the 2.106.0 release, ♥ to 
> the 33 contributors.
>
> http://dlang.org/download.html#dmd_beta
> http://dlang.org/changelog/2.106.0.html
>
> As usual please report any bugs at
> https://issues.dlang.org
>
> -Iain
> on behalf of the Dlang Core Team

Thanks Iain.

For [Global variables can now be initialized with Associative 
Arrays](https://dlang.org/changelog/2.106.0.html#dmd.static-assoc-array), what exactly is it meant by "globals"?

Variables in module-scope?
Static variables?

Does it also affect AAs in structs? For example:

```d
struct S
{
     static int[int] x = [4:4];
}
```

Will this now work?


More information about the Digitalmars-d-announce mailing list