Thread overview
[Issue 4029] New: CTFE: cannot invoke delegate returned from function
Mar 30, 2010
Don
Apr 01, 2010
Walter Bright
Apr 10, 2010
Don
March 30, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4029

           Summary: CTFE: cannot invoke delegate returned from function
           Product: D
           Version: 1.020
          Platform: Other
        OS/Version: Windows
            Status: NEW
          Keywords: rejects-valid
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody@puremagic.com
        ReportedBy: clugdbug@yahoo.com.au


--- Comment #0 from Don <clugdbug@yahoo.com.au> 2010-03-30 00:30:49 PDT ---
string delegate() bug4029a()
{
    return { return "abc"; };
}

string bug4029()
{
   return bug4029a()();
}

static assert(bug4029());

----
bug.d(8): Error: cannot evaluate bug4029a()() at compile time
bug.d(11): Error: cannot evaluate bug4029() at compile time
bug.d(11): Error: static assert  (bug4029()) is not evaluatable at compile time

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


Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bugzilla@digitalmars.com


--- Comment #1 from Walter Bright <bugzilla@digitalmars.com> 2010-04-01 13:54:50 PDT ---
changeset 429

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


Don <clugdbug@yahoo.com.au> changed:

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


--- Comment #2 from Don <clugdbug@yahoo.com.au> 2010-04-09 19:22:03 PDT ---
Fixed DMD1.058 and DMD2.043.

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