test on run.dlang.io
no compiler arguments
all dmd versions
code:
```
void main()
{
auto data = cast(const char[5][]) "qwert";
}
```
output:
```
Up to 2.085.1: Success and no output
Since 2.086.1: Status -4 and no output
```
Nightly gives `output: Illegal instruction (core dumped)`.
Maybe a nicer way to reproduce, pointing at handling of strings:
```
auto data = cast(const int[]) "qwer"; // not OK
auto data2 = cast(const int[]) "qwer".dup; // OK
```
Comment #3 by b2.temp — 2019-12-12T00:55:17Z
*** This issue has been marked as a duplicate of issue 20130 ***