https://issues.dlang.org/show_bug.cgi?id=17641
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #2 from [email protected] --- Thank you, I did not know about this feature. > void delegate(uint) > Yeah, that looks wrong Why is it wrong? This is the correct delegate type definition: void delegate(uint) f = delegate void(uint a) { ... }; --
