[Issue 2731] New: Errors in associative array example

d-bugmail at puremagic.com d-bugmail at puremagic.com
Thu Mar 12 08:58:52 PDT 2009


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

           Summary: Errors in associative array example
           Product: D
           Version: 1.041
          Platform: All
               URL: http://www.digitalmars.com/d/2.0/arrays.html#associative
        OS/Version: All
            Status: NEW
          Keywords: spec
          Severity: minor
          Priority: P3
         Component: Phobos
        AssignedTo: bugzilla at digitalmars.com
        ReportedBy: gide at nwawudu.com


The associative array example given in the URL above fails to compile in D2,
because the std.file.read expects an immutable file name, to fix change:
int main (char[][] args)
- to -
int main (string[] args)


Also, on line 60 has writef(... %8ld%8ld%8ld ... ), which are not valid
formatting strings. writef(... %8d%8d%8d ... ) fixes the issue, this applies to
D1 and D2.
http://www.digitalmars.com/d/1.0/arrays.html#associative
http://www.digitalmars.com/d/2.0/arrays.html#associative


-- 



More information about the Digitalmars-d-bugs mailing list