for
```
string[2][2] s = [["wxc"]];
```
DMD complains that it
> cannot implicitly convert expression `[["wxc"]]` of type `string[][]` to `string[2][]`
but it should rather say that
> cannot implicitly convert expression `[["wxc"]]` of type `string[][]` to `string[2][2]`
Comment #1 by robert.schadek — 2024-12-13T19:18:41Z