December 18, 2018
https://issues.dlang.org/show_bug.cgi?id=18451

RazvanN <razvan.nitu1305@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |razvan.nitu1305@gmail.com

--- Comment #9 from RazvanN <razvan.nitu1305@gmail.com> ---
I'm not sure this is a dmd issue. For example, this compiles just fine:

void main(){
    import std.algorithm;
    //import std.stdio;
    void delegate(void*) dg;
    void delegate(void*)[] dgs = [dg, dg, dg];
    //dgs.writeln;
    dgs.remove(1);
}

However uncommenting the commented lines issues the error. I suspect something was broken in the innards of writeln.

--
February 23, 2021
https://issues.dlang.org/show_bug.cgi?id=18451

RazvanN <razvan.nitu1305@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|dmd                         |phobos

--
1 2
Next ›   Last »