April 06, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=1103

           Summary: metastrings.ToString fails for long > 0xFFFF_FFFF
           Product: D
           Version: 1.010
          Platform: PC
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P3
         Component: Phobos
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: thomas-dloop@kuehne.cn


Originaly posted by alcohol <alcohol_thanks@hotmail.co.jp> in ev2rn3$kmk$1@digitalmars.com:

#
# import std.metastrings;
# pragma(msg,ToString!(0x100000000));
#

dmd -c test

result: 0
expected result: 4294967296

cause:
std/metastring.d:88 const char[] ToString = ToString!(cast(uint)I);

should be
std/metastring.d:88 const char[] ToString = ToString!(cast(ulong)I);


-- 

July 01, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=1103


bugzilla@digitalmars.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED




------- Comment #1 from bugzilla@digitalmars.com  2007-07-01 13:28 -------
Fixed DMD 1.018 and DMD 2.002


--