> --- Comment #4 from Walter Bright <bugzilla at digitalmars.com>
> 2012-02-22 01:31:32 PST ---
> Fixed for D2 only.
void main() {
int[] array = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ];
writeln(array, "~", --array.length);
assert (array.length == 9);
}
Which one is correct?
Best regards...