www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 5873] New: Cannot call iota() on long with step

reply d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=5873

           Summary: Cannot call iota() on long with step
           Product: D
           Version: D2
          Platform: All
               URL: https://github.com/D-Programming-Language/phobos/commi
                    t/3e6679b2#L3L3905
        OS/Version: All
            Status: NEW
          Keywords: rejects-valid
          Severity: regression
          Priority: P2
         Component: Phobos
        AssignedTo: nobody puremagic.com
        ReportedBy: kennytm gmail.com



(This is a problem on Phobos git master introduced since commit 3e6679b2. The
code works fine on 2.052)

Test case:

------------------------
import std.range;
void main() {
    iota(1L, 10L);     // OK
    iota(1L, 10L, 3);  // Error
}
------------------------

Currently it shows the error

/usr/include/phobos/std/range.d(3902): Error: cannot implicitly convert
expression (unsigned((this.pastLast - this.current) / cast(long)this.step)) of
type ulong to uint
x.d(4): Error: template instance std.range.iota!(long,long,int) error
instantiating

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Apr 23 2011
next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=5873


kennytm gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch





https://github.com/D-Programming-Language/phobos/pull/113

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jun 21 2011
prev sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=5873


kennytm gmail.com changed:

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



https://github.com/D-Programming-Language/phobos/commit/d6c471bcff4eb543b2bf84186bb51dbffd88c0a8

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