This commit is contained in:
Andrei Alexandrescu 2011-04-05 23:36:25 -05:00
parent 5071624851
commit d527807016

View file

@ -984,7 +984,7 @@ Example:
----
struct S { ... }
S[] s = (cast(S*) malloc(5 * S.sizeof))[0 .. 5];
initialize(s);
initializeAll(s);
assert(s == [ 0, 0, 0, 0, 0 ]);
----
*/