https://issues.dlang.org/show_bug.cgi?id=18451
RazvanN <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #9 from RazvanN <[email protected]> --- 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. --
