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

           Summary: AssociativeArray!(K,V) .init has no [ ] operator
           Product: D
           Version: 2.041
          Platform: All
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nob...@puremagic.com
        ReportedBy: philippe.sig...@gmail.com


--- Comment #0 from Philippe Sigaud <philippe.sig...@gmail.com> 2010-03-14 
22:13:41 CET ---
This code doesn't work:

auto aa = (int[int]).init; // aa is an AssociativeArray!(int,int)
aa[3] = 2; // Error, no [] operator overload for type
AssociativeArray!(int,int)

whereas this works, obviously:

int[int] aa;
aa[3] = 2;

It's problematic for generic code and for template constraints where .init is
the only way to get a value from a type.

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

Reply via email to