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

           Summary: with statement doesn't work with subtyping
           Product: D
           Version: D2
          Platform: Other
        OS/Version: All
            Status: NEW
          Severity: major
          Priority: P2
         Component: DMD
        AssignedTo: nob...@puremagic.com
        ReportedBy: andrej.mitrov...@gmail.com


--- Comment #0 from Andrej Mitrovic <andrej.mitrov...@gmail.com> 2011-04-25 
17:34:53 PDT ---
struct Foo
{
    void test() {}
}

struct Bar
{
    Foo foo;
    alias foo this;
}

void main()
{
    Bar bar;  
    bar.test();  // ok

    with(bar)
    {
        test();  // Error: undefined identifier test
    }
}

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

Reply via email to