https://issues.dlang.org/show_bug.cgi?id=22239

RazvanN <[email protected]> changed:

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

--- Comment #1 from RazvanN <[email protected]> ---
This affects normal constructors as well (copy constructors are just a
particularization of a normal constructor):

struct Normal(alias al) 
{
    this(int a) {}
    void x() {}
}

void main()
{
    Normal!(x => x) a;

    a.f;
}

void f(T)(T x)
{ 
    T y = 6;                                                                    
}

--

Reply via email to