https://issues.dlang.org/show_bug.cgi?id=15607

--- Comment #5 from Mathias Lang <mathias.l...@sociomantic.com> ---
I just used that syntax because it is how it's defined in the original code.
However, it isn't related to this syntax, sorry if it induced confusion.

This segv all the same:

```
private static immutable char[2][ubyte.max + 1] code_base = [ "??" ];
```

and so does:

```
private static immutable char[2][ubyte.max + 1] code_base = [ [ '?', '?' ] ];
``

--

Reply via email to