[Issue 511] Various problems in the documentation
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Sat Dec 9 05:07:43 PST 2006
http://d.puremagic.com/issues/show_bug.cgi?id=511
------- Comment #42 from brunodomedeiros+bugz at gmail.com 2006-12-09 07:07 -------
A Problem in http://www.digitalmars.com/d/function.html ,
in Lazy Variadic Functions, the following code segment is wrong:
int delegate[] dg;
foo(1, 3+x, dg, cast(int delegate[])null);
Should be:
int delegate() dg;
foo(1, 3+x, dg, cast(int delegate())null);
--
More information about the Digitalmars-d-bugs
mailing list