www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 13461] New: [ICE] Multiplying two integer arrays causes an ICE

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: nobody puremagic.com
          Reporter: monkeyworks12 hotmail.com

void main()
{
    auto a = [1, 2, 3];
    auto b = [1, 0, 0];

        //Internal error: e2ir.c 2077
    //writeln(a[] * b[]);
}

--
Sep 11 2014