Thread overview
[Issue 5170] New: std.algorithm.copy "works" for non-assignable ranges
Nov 05, 2010
David Simcha
Apr 13, 2011
David Simcha
November 05, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=5170

           Summary: std.algorithm.copy "works" for non-assignable ranges
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Windows
            Status: NEW
          Keywords: accepts-invalid
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: nobody@puremagic.com
        ReportedBy: dsimcha@yahoo.com


--- Comment #0 from David Simcha <dsimcha@yahoo.com> 2010-11-05 10:03:26 PDT ---
The following code compiles and runs (??????)

import std.algorithm;

struct DummyRange {
    int front() { return 1; }
    void popFront() {}
    enum bool empty = false;
}

void main() {
    auto arr = [1,2,3];
    DummyRange dummyRange;
    copy(arr, dummyRange);
}

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
January 09, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5170


Andrei Alexandrescu <andrei@metalanguage.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
                 CC|                            |andrei@metalanguage.com
         AssignedTo|nobody@puremagic.com        |andrei@metalanguage.com


-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
April 13, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5170


David Simcha <dsimcha@yahoo.com> changed:

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


--- Comment #1 from David Simcha <dsimcha@yahoo.com> 2011-04-12 17:44:35 PDT ---
This one looks to have been fixed a long time ago but never closed.

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