https://issues.dlang.org/show_bug.cgi?id=24355
--- Comment #2 from ryuukk_ <ryuukk.dev at gmail.com> ---
I expect the same as:
```
void main()
{
char[32] id = "hello";
}
```
left: static array
right: slice
result: slice -> copy -> [0 .. slice.length]
--