https://issues.dlang.org/show_bug.cgi?id=13461
Issue ID: 13461
Summary: [ICE] Multiplying two integer arrays causes an ICE
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: P1
Component: DMD
Assignee: [email protected]
Reporter: [email protected]
void main()
{
auto a = [1, 2, 3];
auto b = [1, 0, 0];
//Internal error: e2ir.c 2077
//writeln(a[] * b[]);
}
--
