Actions
Bug #4699
closedArrays - affectation
Description
a = [1,2,3]
b = a
b[1] = 10
the content of a : [1, 10, 3]
why the variables a and b point on the same space ?
a.object_id = b.boject_id
Actions
Like0
Like0Like0