Actions
Bug #800
closedProblem with Array class
Description
=begin
If you test this simple program, you will see why array should be dup on assignment ...
a=1
b=1
c=[a,b]
def foo(x)
x[0] +=1
x[1] +=1
end
d = c
e = d
f = e
foo(f)
p c[0],c[1]
=end
Actions
Like0
Like0Like0