[Issue 3817] New: Array op: wrong error message

d-bugmail at puremagic.com d-bugmail at puremagic.com
Thu Feb 18 10:14:47 PST 2010


http://d.puremagic.com/issues/show_bug.cgi?id=3817

           Summary: Array op: wrong error message
           Product: D
           Version: 2.040
          Platform: x86
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: druntime
        AssignedTo: sean at invisibleduck.org
        ReportedBy: bearophile_hugs at eml.cc


--- Comment #0 from bearophile_hugs at eml.cc 2010-02-18 10:14:46 PST ---
void main() {
    int[] a1 = [1];
    int[] a2 = [2];
    int[] a3;
    a3 = a1 + a2;
}


Gives wrong error message:
test.d(5): Error: Array operation a1 + a2 not implemented

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------


More information about the Digitalmars-d-bugs mailing list