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

           Summary: std.range.indexed RangeError when indexing string with
                    std.range.recurrence!"n"(0)
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: [email protected]
        ReportedBy: [email protected]


--- Comment #0 from [email protected] 2013-08-07 13:51:29 PDT ---
import std.stdio;
import std.range;

void main()
{
    auto str = "石室詩士施氏,嗜獅,誓食十獅。"d;
    auto indStr = str.indexed(recurrence!"n"(0));

        //[email protected](6177): Range violation
    writeln(indStr);
}


This code prints the string correctly, but it seems that it doesn't stop when
the end of the string is reached.

石室詩士施氏,嗜獅,誓食十獅。

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

Reply via email to