Thread overview
[Issue 3817] New: Array op: wrong error message
Apr 30, 2010
Walter Bright
May 03, 2010
Don
February 18, 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@invisibleduck.org
        ReportedBy: bearophile_hugs@eml.cc


--- Comment #0 from bearophile_hugs@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: -------
April 29, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=3817



--- Comment #1 from bearophile_hugs@eml.cc 2010-04-29 02:29:55 PDT ---
See comments to bug 3522.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
April 30, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=3817


Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bugzilla@digitalmars.com


--- Comment #2 from Walter Bright <bugzilla@digitalmars.com> 2010-04-29 21:06:39 PDT ---
Changeset 460

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
May 02, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=3817



--- Comment #3 from bearophile_hugs@eml.cc 2010-05-02 16:27:52 PDT ---
After Changeset 460 this problem is unchanged, not solved yet.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
May 03, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=3817


Don <clugdbug@yahoo.com.au> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |clugdbug@yahoo.com.au


--- Comment #4 from Don <clugdbug@yahoo.com.au> 2010-05-03 00:05:35 PDT ---
(In reply to comment #3)
> After Changeset 460 this problem is unchanged, not solved yet.

That's correct, (note that it's not marked as fixed in the changelog). I gave Walter the wrong bug number.

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