Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0-JSR-2
-
None
Description
x = [0,1,2,3]
x[1..<1] = [9,9,9]
assert x == [0,9,9,9,123]
but currently is [9,9,9,0,1,2,3]
i.e. the position of the EmptyRange is ignored