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

RazvanN <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |[email protected]
         Resolution|---                         |WORKSFORME

--- Comment #7 from RazvanN <[email protected]> ---
I cannot reproduce this. I have used this example:

deprecated
void main () @safe
{                                                                              
    toString(null);
}

deprecated
void toString (void delegate (char[]) @safe sink) @safe
{
    char[20] buffer = void;
    sink(unsignedToTempString(42, buffer));
}

With the functions not being deprecated, you get a deprecation about assigning
buffer to the anonymous parameter of synk, but with the functions being
deprecated the message is silenced.

Closing as WORKSFORME.

--

Reply via email to