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

           Summary: [CTFE] Cannot return out of foreach range statement
           Product: D
           Version: 2.030
          Platform: x86
        OS/Version: All
            Status: NEW
          Keywords: patch, wrong-code
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzi...@digitalmars.com
        ReportedBy: rsi...@gmail.com
        Depends on: 1972


Created an attachment (id=396)
 --> (http://d.puremagic.com/issues/attachment.cgi?id=396)
Fix the problem (DMD 2.030)

Return statement is not handled in ForeachRangeStatement::interpret(). As a
result, the static assert in this code wrongly fails:
--------------------
int foo()
{
    foreach (i; 0 .. 1)
        return 1;
    return 0;
}
static assert(foo() == 1);
--------------------

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

Reply via email to