Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Won't Fix
-
1.6
-
None
-
None
-
Mac OS X
Description
Here is what I've got on 1.6:
[1,2,3].collect
{n -> ++n}returns as expected [2,3,4]
and
[1,2,3].collect
{n -> n++}returns [1,2,3]
I cannot believe this is not a bug.