https://d.puremagic.com/issues/show_bug.cgi?id=12485

           Summary: [REG2.065] DMD crashes when recursive template
                    expansion
           Product: D
           Version: D2
          Platform: x86_64
        OS/Version: Windows
            Status: NEW
          Keywords: ice
          Severity: regression
          Priority: P2
         Component: DMD
        AssignedTo: [email protected]
        ReportedBy: [email protected]


--- Comment #0 from [email protected] 2014-03-27 20:55:20 PDT ---
void dorecursive()
{
    recursive([0]);
}

void recursive(R)(R r)
{
    import std.algorithm;
    recursive( r.filter!(e=>true) );
}

DMD2.064.2 puts an error and terminates normally.
DMD2.065 crashes without error.

ENVIRONMENT: Windows 7 64-bit

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

Reply via email to