www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 12439] New: Can't access to property call result if the call is in parantheses

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

           Summary: Can't access to property call result if the call is in
                    parantheses
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Keywords: rejects-valid
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: verylonglogin.reg gmail.com



12:56:00 MSK ---
This code should compile:
---
struct S1 { int i; }

struct S2
{  property S1 s1() { return S1(); } }

void main()
{
    S2 s2;
    auto x = (s2.s1).i; // line 9
}
---
main.d(9): Error: need 'this' for 's1' of type ' property S1()'
---

Same for non-property functions if called without parantheses.

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