[Issue 6446] New: Problem with iota(long)

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sat Aug 6 19:48:00 PDT 2011


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

           Summary: Problem with iota(long)
           Product: D
           Version: D2
          Platform: x86
        OS/Version: Windows
            Status: NEW
          Keywords: rejects-valid
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: nobody at puremagic.com
        ReportedBy: bearophile_hugs at eml.cc


--- Comment #0 from bearophile_hugs at eml.cc 2011-08-06 19:47:58 PDT ---
I think this is a bug of iota() (or a problem in core.memory.GC.malloc):


import std.range: iota;
import std.array: array;
void main() {
    auto a = array(iota(1L));
}



DMD gives:

...\std\array.d(243): Error: function core.memory.GC.malloc (uint sz, uint ba =
cast(uint)0) is not callable using argument types (ulong,BlkAttr)
...\std\array.d(243): Error: cannot implicitly convert expression (_param_0 *
8LU) of type ulong to uint
...\std\array.d(231): Error: cannot implicitly convert expression (_param_0) of
type ulong to uint
...\std\array.d(194): Error: template instance
std.array.arrayAllocImpl!(false,long[],ulong) error instantiating
...\std\array.d(42):        instantiated from here:
uninitializedArray!(long[],ulong)
test.d(4):        instantiated from here: array!(Result)
...\std\array.d(42): Error: template instance
std.array.uninitializedArray!(long[],ulong) error instantiating
test.d(4):        instantiated from here: array!(Result)
test.d(4): Error: template instance std.array.array!(Result) error
instantiating

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