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


Denis Shelomovskij <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]


--- Comment #1 from Denis Shelomovskij <[email protected]> 2013-09-23 
12:19:26 MSD ---
Also it makes impossible to use Template This Parameters:
---
struct S
{
    void f()(inout(void)*) inout { }
    void g(this T)(inout(void)*) inout { }
}

void main()
{
    S s;
    void* p;

    s.f!()(p); // ok
    s.f(p); // error
    s.g!()(p); // error
    s.g!S(p); // error (works without `inout` but not sure it should)
}
---

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

Reply via email to