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

           Summary: Cannot use auto functions at compile-time
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nob...@puremagic.com
        ReportedBy: andrej.mitrov...@gmail.com


--- Comment #0 from Andrej Mitrovic <andrej.mitrov...@gmail.com> 2011-01-08 
09:46:01 PST ---
enum var1 = foo();  // Fine
enum var2 = bar();  // Error: forward reference to bar

int foo()
{
    return 1;
}

auto bar()
{
    return 1;
}

void main()
{
}

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

Reply via email to