[Issue 2988] New: Chain needs opIndexAssign.

d-bugmail at puremagic.com d-bugmail at puremagic.com
Fri May 15 19:47:43 PDT 2009


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

           Summary: Chain needs opIndexAssign.
           Product: D
           Version: 2.030
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: bugzilla at digitalmars.com
        ReportedBy: dsimcha at yahoo.com


import std.range;

void main() {
    uint[] foo = [1,2,3,4,5];
    uint[] bar = [1,2,3,4,5];
    auto c = chain(foo, bar);
    c[3] = 3;
}

Errors:

test7.d(7): Error: operator [] assignment overload with opIndex(i, value)
illegal, use opIndexAssign(value, i)

test7.d(7): Error: function
std.range.ChainImpl!(uint[],uint[]).ChainImpl.opIndex (uint index) does not
match parameter types (int,int)

test7.d(7): Error: expected 1 arguments, not 2 for non-variadic function type
ref uint(uint index)

-- 
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