On Monday, 8 September 2025 at 15:42:27 UTC, Walter Bright wrote: > > The answer is: > ``` > __gshared char[10] xxx = 0; > ``` I've just run into this: ``` enum Type: char[4] { invalid = 0, } ``` Error: cannot implicitly convert expression `0` of type `int` to `char[4]` Should work, I guess.