On Tuesday, 13 June 2023 at 17:06:55 UTC, mw wrote:
Does anyone know how to fix it? or any work-around?


Thanks.

I don't know if it's *correct* or not, but I think I did this at the time to work around it.

```
shared string[string] aa;

void main()
{
    auto aaTemp = [ "abc" : "123" ];
    aa = cast(shared)aaTemp;
}
```

Reply via email to