Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Weird behavior of multiple assignment (a, b, *c = []) #3236

Closed
naclyhara opened this issue Nov 8, 2016 · 0 comments
Closed

Weird behavior of multiple assignment (a, b, *c = []) #3236

naclyhara opened this issue Nov 8, 2016 · 0 comments

Comments

@naclyhara
Copy link
Contributor

While trying CRuby's basictest/test.rb with mruby (6c299a), I found this test fails on mruby:

a,b,*c = []; test_ok([a,b,c] == [nil,nil,[]]) 

Here is how to reproduce the issue.

p [1, 2, 3]  # Some random code

a,b,*c = []
p [a, b, c]
# cruby: [nil, nil, []]
# mruby: [[1, 2, 3], [[1, 2, 3]], []]    # a and b has unexpected value

These tests also fail:

a,b,*c = [1]; test_ok([a,b,c] == [1,nil,[]])
a,b,*c = [nil]; test_ok([a,b,c] == [nil,nil,[]])
a,b,*c = [[]]; test_ok([a,b,c] == [[],nil,[]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant