February 26, 2009
http://d.puremagic.com/issues/show_bug.cgi?id=2691

           Summary: Property syntax does not work with template methods
           Product: D
           Version: 1.00
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Keywords: rejects-valid
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: dhasenan@gmail.com


The following example should work but instead results in an error: "Error: template doNothing!(int) is not a member of s.chain"

struct Struct
{
    Struct chain()
    {
        return *this;
    }

    void doNothing(T)(){}
}

void main ()
{
    Struct s;
    s.chain.doNothing!(int);
}


I think this limitation has existed since time immemorial, but I haven't tried it with any dmd version before 1.00.


-- 

June 10, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=2691


yebblies <yebblies@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |yebblies@gmail.com
         Resolution|                            |FIXED


--- Comment #1 from yebblies <yebblies@gmail.com> 2011-06-10 08:05:40 PDT ---
This works in current dmd1.063

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